pub enum FnArg {
Literal(Literal),
Test(Box<Test>),
Filter(Filter),
}
Expand description
Enum representing different types of function arguments in a JSONPath query.
Variants§
Literal(Literal)
Represents a literal argument.
Test(Box<Test>)
Represents a test argument.
Filter(Filter)
Represents a filter argument.
Implementations§
Trait Implementations§
impl StructuralPartialEq for FnArg
Auto Trait Implementations§
impl Freeze for FnArg
impl RefUnwindSafe for FnArg
impl Send for FnArg
impl Sync for FnArg
impl Unpin for FnArg
impl UnwindSafe for FnArg
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