pub struct ArrayIndex<T> { /* private fields */ }
Expand description
process the simple index like [index]
Trait Implementations§
Source§impl<'a, T> Path<'a> for ArrayIndex<T>where
T: JsonLike,
impl<'a, T> Path<'a> for ArrayIndex<T>where
T: JsonLike,
type Data = T
Source§fn find(
&self,
input: JsonPathValue<'a, Self::Data>,
) -> Vec<JsonPathValue<'a, Self::Data>>
fn find( &self, input: JsonPathValue<'a, Self::Data>, ) -> Vec<JsonPathValue<'a, Self::Data>>
when every element needs to handle independently
Source§fn flat_find(
&self,
input: Vec<JsonPathValue<'a, Self::Data>>,
_is_search_length: bool,
) -> Vec<JsonPathValue<'a, Self::Data>>
fn flat_find( &self, input: Vec<JsonPathValue<'a, Self::Data>>, _is_search_length: bool, ) -> Vec<JsonPathValue<'a, Self::Data>>
when the whole output needs to handle
Auto Trait Implementations§
impl<T> Freeze for ArrayIndex<T>
impl<T> RefUnwindSafe for ArrayIndex<T>where
T: RefUnwindSafe,
impl<T> Send for ArrayIndex<T>where
T: Send,
impl<T> Sync for ArrayIndex<T>where
T: Sync,
impl<T> Unpin for ArrayIndex<T>where
T: Unpin,
impl<T> UnwindSafe for ArrayIndex<T>where
T: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more