pub enum CompareOperator {
Show 16 variants
Eq,
Ne,
Gt,
Ge,
Lt,
Le,
Like,
NotLike,
LikeLeft,
LikeRight,
IsNull,
IsNotNull,
In,
NotIn,
Between,
NotBetween,
}
Expand description
比较操作符枚举
Variants§
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§const fn clone_from(&mut self, source: &Self)
const 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
impl Display for CompareOperator
Source§impl PartialEq for CompareOperator
impl PartialEq 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