pub enum JsonPathRootV1 {
Unqualified(String),
Qualified {
qualifier: String,
field: String,
},
}Variants§
Trait Implementations§
Source§impl Clone for JsonPathRootV1
impl Clone for JsonPathRootV1
Source§fn clone(&self) -> JsonPathRootV1
fn clone(&self) -> JsonPathRootV1
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for JsonPathRootV1
impl Debug for JsonPathRootV1
impl Eq for JsonPathRootV1
Source§impl Hash for JsonPathRootV1
impl Hash for JsonPathRootV1
Source§impl PartialEq for JsonPathRootV1
impl PartialEq for JsonPathRootV1
impl StructuralPartialEq for JsonPathRootV1
Auto Trait Implementations§
impl Freeze for JsonPathRootV1
impl RefUnwindSafe for JsonPathRootV1
impl Send for JsonPathRootV1
impl Sync for JsonPathRootV1
impl Unpin for JsonPathRootV1
impl UnsafeUnpin for JsonPathRootV1
impl UnwindSafe for JsonPathRootV1
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