pub enum SqlOperator {
Comparison(SqlComparisonOperator),
Logical(SqlLogicalOperator),
Null(SqlNullOperator),
Pattern(SqlPatternOperator),
}Expand description
Common SQL operators.
Variants§
Comparison(SqlComparisonOperator)
Logical(SqlLogicalOperator)
Null(SqlNullOperator)
Pattern(SqlPatternOperator)
Implementations§
Trait Implementations§
Source§impl Clone for SqlOperator
impl Clone for SqlOperator
Source§fn clone(&self) -> SqlOperator
fn clone(&self) -> SqlOperator
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SqlOperator
impl Debug for SqlOperator
Source§impl Display for SqlOperator
impl Display for SqlOperator
Source§impl FromStr for SqlOperator
impl FromStr for SqlOperator
Source§impl Hash for SqlOperator
impl Hash for SqlOperator
Source§impl Ord for SqlOperator
impl Ord for SqlOperator
Source§fn cmp(&self, other: &SqlOperator) -> Ordering
fn cmp(&self, other: &SqlOperator) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for SqlOperator
impl PartialEq for SqlOperator
Source§fn eq(&self, other: &SqlOperator) -> bool
fn eq(&self, other: &SqlOperator) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for SqlOperator
impl PartialOrd for SqlOperator
Source§impl TryFrom<&str> for SqlOperator
impl TryFrom<&str> for SqlOperator
impl Copy for SqlOperator
impl Eq for SqlOperator
impl StructuralPartialEq for SqlOperator
Auto Trait Implementations§
impl Freeze for SqlOperator
impl RefUnwindSafe for SqlOperator
impl Send for SqlOperator
impl Sync for SqlOperator
impl Unpin for SqlOperator
impl UnsafeUnpin for SqlOperator
impl UnwindSafe for SqlOperator
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