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