pub enum ExprComparisonType {
Equal,
Greater,
GreaterOrEqual,
Identical,
Matches,
}
Variants§
Trait Implementations§
Source§impl Clone for ExprComparisonType
impl Clone for ExprComparisonType
Source§fn clone(&self) -> ExprComparisonType
fn clone(&self) -> ExprComparisonType
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 ExprComparisonType
impl Debug for ExprComparisonType
Source§impl<'de> Deserialize<'de> for ExprComparisonType
impl<'de> Deserialize<'de> for ExprComparisonType
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 ExprComparisonType
impl Hash for ExprComparisonType
Source§impl PartialEq for ExprComparisonType
impl PartialEq for ExprComparisonType
Source§impl PartialOrd for ExprComparisonType
impl PartialOrd for ExprComparisonType
impl Copy for ExprComparisonType
impl Eq for ExprComparisonType
impl StructuralPartialEq for ExprComparisonType
Auto Trait Implementations§
impl Freeze for ExprComparisonType
impl RefUnwindSafe for ExprComparisonType
impl Send for ExprComparisonType
impl Sync for ExprComparisonType
impl Unpin for ExprComparisonType
impl UnwindSafe for ExprComparisonType
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