Enum jsonpath_plus::ast::ExprLit
source · [−]Expand description
A literal inside an expression
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.
Int(IntLit)
An integer literal, see IntLit
Str(StringLit)
A string literal, see StringLit
Bool(BoolLit)
A boolean literal, see BoolLit
Null(NullLit)
A null literal, see NullLit
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for ExprLit
impl Send for ExprLit
impl Sync for ExprLit
impl Unpin for ExprLit
impl UnwindSafe for ExprLit
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