pub struct UnionIndex<'a, T> { /* private fields */ }
Expand description
the list of indexes like [1,2,3]
Implementations§
Trait Implementations§
Source§impl<'a, T> Path<'a> for UnionIndex<'a, T>where
T: JsonLike,
impl<'a, T> Path<'a> for UnionIndex<'a, 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<'a, T> Freeze for UnionIndex<'a, T>
impl<'a, T> !RefUnwindSafe for UnionIndex<'a, T>
impl<'a, T> !Send for UnionIndex<'a, T>
impl<'a, T> !Sync for UnionIndex<'a, T>
impl<'a, T> Unpin for UnionIndex<'a, T>where
T: Unpin,
impl<'a, T> !UnwindSafe for UnionIndex<'a, T>
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