#[repr(i32)]pub enum NullTestType {
Undefined = 0,
IsNull = 1,
IsNotNull = 2,
}
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for NullTestType
impl Clone for NullTestType
Source§fn clone(&self) -> NullTestType
fn clone(&self) -> NullTestType
Returns a duplicate of the value. Read more
1.0.0 · 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 NullTestType
impl Debug for NullTestType
Source§impl Default for NullTestType
impl Default for NullTestType
Source§fn default() -> NullTestType
fn default() -> NullTestType
Returns the “default value” for a type. Read more
Source§impl From<NullTestType> for i32
impl From<NullTestType> for i32
Source§fn from(value: NullTestType) -> i32
fn from(value: NullTestType) -> i32
Converts to this type from the input type.
Source§impl Hash for NullTestType
impl Hash for NullTestType
Source§impl Ord for NullTestType
impl Ord for NullTestType
Source§fn cmp(&self, other: &NullTestType) -> Ordering
fn cmp(&self, other: &NullTestType) -> Ordering
1.21.0 · 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 NullTestType
impl PartialEq for NullTestType
Source§impl PartialOrd for NullTestType
impl PartialOrd for NullTestType
impl Copy for NullTestType
impl Eq for NullTestType
impl StructuralPartialEq for NullTestType
Auto Trait Implementations§
impl Freeze for NullTestType
impl RefUnwindSafe for NullTestType
impl Send for NullTestType
impl Sync for NullTestType
impl Unpin for NullTestType
impl UnwindSafe for NullTestType
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