pub enum PredicateOperator {
Equal,
NotEqual,
GreaterThan,
GreaterThanOrEqual,
LessThan,
LessThanOrEqual,
Like,
In,
IsNull,
IsNotNull,
}Expand description
Predicate operators
Variants§
Trait Implementations§
Source§impl Clone for PredicateOperator
impl Clone for PredicateOperator
Source§fn clone(&self) -> PredicateOperator
fn clone(&self) -> PredicateOperator
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 PredicateOperator
impl Debug for PredicateOperator
Source§impl PartialEq for PredicateOperator
impl PartialEq for PredicateOperator
impl StructuralPartialEq for PredicateOperator
Auto Trait Implementations§
impl Freeze for PredicateOperator
impl RefUnwindSafe for PredicateOperator
impl Send for PredicateOperator
impl Sync for PredicateOperator
impl Unpin for PredicateOperator
impl UnwindSafe for PredicateOperator
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