pub struct ArraySlice<T> { /* private fields */ }
Expand description
process the slice like [start:end:step]
Trait Implementations§
Source§impl<T: Debug> Debug for ArraySlice<T>
impl<T: Debug> Debug for ArraySlice<T>
Source§impl<'a, T> Path<'a> for ArraySlice<T>where
T: JsonLike,
impl<'a, T> Path<'a> for ArraySlice<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 ArraySlice<T>
impl<T> RefUnwindSafe for ArraySlice<T>where
T: RefUnwindSafe,
impl<T> Send for ArraySlice<T>where
T: Send,
impl<T> Sync for ArraySlice<T>where
T: Sync,
impl<T> Unpin for ArraySlice<T>where
T: Unpin,
impl<T> UnwindSafe for ArraySlice<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