pub enum FieldOperator {
Show 18 variants
Equal,
NotEqual,
GreaterThan,
GreaterThanOrEqual,
LessThan,
LessThanOrEqual,
Between,
In,
NotIn,
Contain,
NotContain,
BeginWith,
NotBeginWith,
EndWith,
NotEndWith,
SoundsLike,
IsNull,
IsNotNull,
}Variants§
Equal
NotEqual
GreaterThan
GreaterThanOrEqual
LessThan
LessThanOrEqual
Between
In
NotIn
Contain
NotContain
BeginWith
NotBeginWith
EndWith
NotEndWith
SoundsLike
IsNull
IsNotNull
Trait Implementations§
Source§impl Clone for FieldOperator
impl Clone for FieldOperator
Source§fn clone(&self) -> FieldOperator
fn clone(&self) -> FieldOperator
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for FieldOperator
Source§impl Debug for FieldOperator
impl Debug for FieldOperator
impl Eq for FieldOperator
Source§impl PartialEq for FieldOperator
impl PartialEq for FieldOperator
impl StructuralPartialEq for FieldOperator
Auto Trait Implementations§
impl Freeze for FieldOperator
impl RefUnwindSafe for FieldOperator
impl Send for FieldOperator
impl Sync for FieldOperator
impl Unpin for FieldOperator
impl UnsafeUnpin for FieldOperator
impl UnwindSafe for FieldOperator
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