pub enum ComparisonType {
Eq,
Ne,
Gt,
Gte,
Lt,
Lte,
}
Expand description
Specifies the comparison operator: eq
, ne
, gt
, gte
, lt
, lte
.
Variants§
Trait Implementations§
Source§impl Clone for ComparisonType
impl Clone for ComparisonType
Source§fn clone(&self) -> ComparisonType
fn clone(&self) -> ComparisonType
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 ComparisonType
impl Debug for ComparisonType
Source§impl<'de> Deserialize<'de> for ComparisonType
impl<'de> Deserialize<'de> for ComparisonType
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 PartialEq for ComparisonType
impl PartialEq for ComparisonType
Source§impl Serialize for ComparisonType
impl Serialize for ComparisonType
impl Copy for ComparisonType
impl StructuralPartialEq for ComparisonType
Auto Trait Implementations§
impl Freeze for ComparisonType
impl RefUnwindSafe for ComparisonType
impl Send for ComparisonType
impl Sync for ComparisonType
impl Unpin for ComparisonType
impl UnwindSafe for ComparisonType
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