pub enum Op {
Eq,
Ne,
Gt,
Gte,
Lt,
Lte,
}Expand description
How a value is compared against a column.
Variants§
Eq
Equal.
Ne
Not equal. A missing column is not “not equal”; it simply does not match.
Gt
Greater than.
Gte
Greater than or equal.
Lt
Less than.
Lte
Less than or equal.
Trait Implementations§
impl Copy for Op
impl Eq for Op
impl StructuralPartialEq for Op
Auto Trait Implementations§
impl Freeze for Op
impl RefUnwindSafe for Op
impl Send for Op
impl Sync for Op
impl Unpin for Op
impl UnsafeUnpin for Op
impl UnwindSafe for Op
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