Enum jsonpath_rust::parser::model::FilterSign
source · pub enum FilterSign {
Show 14 variants
Equal,
Unequal,
Less,
Greater,
LeOrEq,
GrOrEq,
Regex,
In,
Nin,
Size,
NoneOf,
AnyOf,
SubSetOf,
Exists,
}
Expand description
The operators for filtering functions
Variants§
Implementations§
Trait Implementations§
source§impl Clone for FilterSign
impl Clone for FilterSign
source§fn clone(&self) -> FilterSign
fn clone(&self) -> FilterSign
Returns a copy of the value. Read more
1.0.0 · 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 FilterSign
impl Debug for FilterSign
source§impl PartialEq for FilterSign
impl PartialEq for FilterSign
source§fn eq(&self, other: &FilterSign) -> bool
fn eq(&self, other: &FilterSign) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for FilterSign
Auto Trait Implementations§
impl Freeze for FilterSign
impl RefUnwindSafe for FilterSign
impl Send for FilterSign
impl Sync for FilterSign
impl Unpin for FilterSign
impl UnwindSafe for FilterSign
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