pub enum SqlLogicalOperator {
And,
Or,
Not,
}Expand description
SQL logical operators.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for SqlLogicalOperator
impl Clone for SqlLogicalOperator
Source§fn clone(&self) -> SqlLogicalOperator
fn clone(&self) -> SqlLogicalOperator
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 SqlLogicalOperator
impl Debug for SqlLogicalOperator
Source§impl Default for SqlLogicalOperator
impl Default for SqlLogicalOperator
Source§fn default() -> SqlLogicalOperator
fn default() -> SqlLogicalOperator
Returns the “default value” for a type. Read more
Source§impl Display for SqlLogicalOperator
impl Display for SqlLogicalOperator
Source§impl Hash for SqlLogicalOperator
impl Hash for SqlLogicalOperator
Source§impl Ord for SqlLogicalOperator
impl Ord for SqlLogicalOperator
Source§fn cmp(&self, other: &SqlLogicalOperator) -> Ordering
fn cmp(&self, other: &SqlLogicalOperator) -> 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 SqlLogicalOperator
impl PartialEq for SqlLogicalOperator
Source§fn eq(&self, other: &SqlLogicalOperator) -> bool
fn eq(&self, other: &SqlLogicalOperator) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for SqlLogicalOperator
impl PartialOrd for SqlLogicalOperator
impl Copy for SqlLogicalOperator
impl Eq for SqlLogicalOperator
impl StructuralPartialEq for SqlLogicalOperator
Auto Trait Implementations§
impl Freeze for SqlLogicalOperator
impl RefUnwindSafe for SqlLogicalOperator
impl Send for SqlLogicalOperator
impl Sync for SqlLogicalOperator
impl Unpin for SqlLogicalOperator
impl UnsafeUnpin for SqlLogicalOperator
impl UnwindSafe for SqlLogicalOperator
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