pub struct JsonPath {
pub path: Vec<JsonPathElem>,
}Expand description
Fields§
§path: Vec<JsonPathElem>Sequence of path elements that form the JSON path.
Trait Implementations§
Source§impl Ord for JsonPath
impl Ord for JsonPath
Source§impl PartialOrd for JsonPath
impl PartialOrd for JsonPath
Source§impl Spanned for JsonPath
§partial span
see Spanned impl for JsonPathElem for more information
impl Spanned for JsonPath
§partial span
see Spanned impl for JsonPathElem for more information
Source§impl VisitMut for JsonPath
impl VisitMut for JsonPath
Source§fn visit<V: VisitorMut>(&mut self, visitor: &mut V) -> ControlFlow<V::Break>
fn visit<V: VisitorMut>(&mut self, visitor: &mut V) -> ControlFlow<V::Break>
Mutably visit this node with the provided
VisitorMut. Read moreimpl Eq for JsonPath
impl StructuralPartialEq for JsonPath
Auto Trait Implementations§
impl Freeze for JsonPath
impl RefUnwindSafe for JsonPath
impl Send for JsonPath
impl Sync for JsonPath
impl Unpin for JsonPath
impl UnsafeUnpin for JsonPath
impl UnwindSafe for JsonPath
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