pub enum FieldFilterOp {
Eq,
Ne,
Gt,
Lt,
Gte,
Lte,
Contains,
StartsWith,
}Expand description
Operator for comparing a feature attribute to a FilterValue.
Variants§
Eq
Equal to.
Ne
Not equal to.
Gt
Greater than (numeric comparison).
Lt
Less than (numeric comparison).
Gte
Greater than or equal to (numeric comparison).
Lte
Less than or equal to (numeric comparison).
Contains
String contains the value as a substring (string types only).
StartsWith
String starts with the value as a prefix (string types only).
Trait Implementations§
Source§impl Clone for FieldFilterOp
impl Clone for FieldFilterOp
Source§fn clone(&self) -> FieldFilterOp
fn clone(&self) -> FieldFilterOp
Returns a duplicate 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 FieldFilterOp
impl Debug for FieldFilterOp
Source§impl PartialEq for FieldFilterOp
impl PartialEq for FieldFilterOp
impl Copy for FieldFilterOp
impl Eq for FieldFilterOp
impl StructuralPartialEq for FieldFilterOp
Auto Trait Implementations§
impl Freeze for FieldFilterOp
impl RefUnwindSafe for FieldFilterOp
impl Send for FieldFilterOp
impl Sync for FieldFilterOp
impl Unpin for FieldFilterOp
impl UnsafeUnpin for FieldFilterOp
impl UnwindSafe for FieldFilterOp
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