pub enum CompareOperator {
Equal,
NotEqual,
GreaterThan,
GreaterOrEqual,
LessThan,
LessOrEqual,
}Expand description
Represents the various comparison operators.
Variants§
Equal
Equal to.
NotEqual
Not equal to.
GreaterThan
Greater than.
GreaterOrEqual
Greater than or equal to.
LessThan
Less than.
LessOrEqual
Less than or equal to.
Trait Implementations§
Source§impl Clone for CompareOperator
impl Clone for CompareOperator
Source§fn clone(&self) -> CompareOperator
fn clone(&self) -> CompareOperator
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 CompareOperator
impl Debug for CompareOperator
Source§impl Display for CompareOperator
Converts a CompareOperator to its string representation.
impl Display for CompareOperator
Converts a CompareOperator to its string representation.
Source§impl PartialEq for CompareOperator
impl PartialEq for CompareOperator
impl Eq for CompareOperator
impl StructuralPartialEq for CompareOperator
Auto Trait Implementations§
impl Freeze for CompareOperator
impl RefUnwindSafe for CompareOperator
impl Send for CompareOperator
impl Sync for CompareOperator
impl Unpin for CompareOperator
impl UnwindSafe for CompareOperator
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