pub enum ScalarCmpOp {
Eq,
NotEq,
Lt,
Le,
Gt,
Ge,
}Expand description
Comparison operator for a Predicate::ScalarCmp.
Variants§
Trait Implementations§
Source§impl Clone for ScalarCmpOp
impl Clone for ScalarCmpOp
Source§fn clone(&self) -> ScalarCmpOp
fn clone(&self) -> ScalarCmpOp
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ScalarCmpOp
impl Debug for ScalarCmpOp
Source§impl PartialEq for ScalarCmpOp
impl PartialEq for ScalarCmpOp
Source§fn eq(&self, other: &ScalarCmpOp) -> bool
fn eq(&self, other: &ScalarCmpOp) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ScalarCmpOp
impl Eq for ScalarCmpOp
impl StructuralPartialEq for ScalarCmpOp
Auto Trait Implementations§
impl Freeze for ScalarCmpOp
impl RefUnwindSafe for ScalarCmpOp
impl Send for ScalarCmpOp
impl Sync for ScalarCmpOp
impl Unpin for ScalarCmpOp
impl UnsafeUnpin for ScalarCmpOp
impl UnwindSafe for ScalarCmpOp
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