pub enum ComparisonType {
EQ,
LT,
GT,
LTE,
GTE,
LIKE,
IN,
NULL,
}
Variants§
Implementations§
Source§impl ComparisonType
impl ComparisonType
pub fn to_operator(&self) -> &str
Trait Implementations§
Source§impl Default for ComparisonType
impl Default for ComparisonType
Source§fn default() -> ComparisonType
fn default() -> ComparisonType
Returns the “default value” for a type. Read more
Source§impl PartialEq for ComparisonType
impl PartialEq for ComparisonType
impl StructuralPartialEq for ComparisonType
Auto Trait Implementations§
impl Freeze for ComparisonType
impl RefUnwindSafe for ComparisonType
impl Send for ComparisonType
impl Sync for ComparisonType
impl Unpin for ComparisonType
impl UnwindSafe for ComparisonType
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