pub enum CompareOp {
Show 21 variants
Eq,
Ne,
Gt,
Ge,
Lt,
Le,
Like,
NotLike,
In,
NotIn,
Includes,
NotIncludes,
StartsWith,
EndsWith,
Ilike,
NotIlike,
IlikeIncludes,
NotIlikeIncludes,
IlikeStartsWith,
IsNull,
IsNotNull,
}Variants§
Eq
Ne
Gt
Ge
Lt
Le
Like
NotLike
In
NotIn
Includes
NotIncludes
StartsWith
EndsWith
Ilike
NotIlike
IlikeIncludes
NotIlikeIncludes
IlikeStartsWith
IsNull
IsNotNull
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CompareOp
impl RefUnwindSafe for CompareOp
impl Send for CompareOp
impl Sync for CompareOp
impl Unpin for CompareOp
impl UnsafeUnpin for CompareOp
impl UnwindSafe for CompareOp
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