Enum jsonpath_plus::ast::PathKind
source · [−]#[non_exhaustive]
pub enum PathKind {
Root(Dollar),
Relative(At),
}
Expand description
The kind of a sub-path. Either root-based or relative
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Root(Dollar)
A root-based path
Relative(At)
A relative path
Implementations
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for PathKind
impl Send for PathKind
impl Sync for PathKind
impl Unpin for PathKind
impl UnwindSafe for PathKind
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more