pub enum BinaryPredicate {
LT,
GT,
LTE,
GTE,
EQ,
NEQ,
}
Expand description
Built-in binary predicates.
Variants§
LT
Less than
GT
Greater than
LTE
Less than or equal to
GTE
Greater than or equal to
EQ
Equal
NEQ
Not equal
Trait Implementations§
Source§impl Clone for BinaryPredicate
impl Clone for BinaryPredicate
Source§fn clone(&self) -> BinaryPredicate
fn clone(&self) -> BinaryPredicate
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 BinaryPredicate
impl Debug for BinaryPredicate
Source§impl<'de> Deserialize<'de> for BinaryPredicate
impl<'de> Deserialize<'de> for BinaryPredicate
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for BinaryPredicate
impl Hash for BinaryPredicate
Source§impl Ord for BinaryPredicate
impl Ord for BinaryPredicate
Source§fn cmp(&self, other: &BinaryPredicate) -> Ordering
fn cmp(&self, other: &BinaryPredicate) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for BinaryPredicate
impl PartialEq for BinaryPredicate
Source§impl PartialOrd for BinaryPredicate
impl PartialOrd for BinaryPredicate
Source§impl Serialize for BinaryPredicate
impl Serialize for BinaryPredicate
impl Eq for BinaryPredicate
impl StructuralPartialEq for BinaryPredicate
Auto Trait Implementations§
impl Freeze for BinaryPredicate
impl RefUnwindSafe for BinaryPredicate
impl Send for BinaryPredicate
impl Sync for BinaryPredicate
impl Unpin for BinaryPredicate
impl UnwindSafe for BinaryPredicate
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