pub enum ConstraintOp {
Show 14 variants
Eq,
Gt,
Le,
Lt,
Ge,
Match,
Like,
Glob,
Regexp,
Ne,
IsNot,
IsNotNull,
IsNull,
Is,
}Expand description
Comparison operator for an index constraint.
Variants§
Trait Implementations§
Source§impl Clone for ConstraintOp
impl Clone for ConstraintOp
Source§fn clone(&self) -> ConstraintOp
fn clone(&self) -> ConstraintOp
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 ConstraintOp
impl Debug for ConstraintOp
Source§impl Hash for ConstraintOp
impl Hash for ConstraintOp
Source§impl PartialEq for ConstraintOp
impl PartialEq for ConstraintOp
impl Copy for ConstraintOp
impl Eq for ConstraintOp
impl StructuralPartialEq for ConstraintOp
Auto Trait Implementations§
impl Freeze for ConstraintOp
impl RefUnwindSafe for ConstraintOp
impl Send for ConstraintOp
impl Sync for ConstraintOp
impl Unpin for ConstraintOp
impl UnsafeUnpin for ConstraintOp
impl UnwindSafe for ConstraintOp
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