Nullable

Trait Nullable 

Source
pub trait Nullable {
    // Required method
    fn is_null(&self) -> bool;
}

Required Methods§

Source

fn is_null(&self) -> bool

Implementations on Foreign Types§

Source§

impl<T> Nullable for Option<T>

Source§

fn is_null(&self) -> bool

Source§

impl<T> Nullable for *const T

Source§

fn is_null(&self) -> bool

Source§

impl<T> Nullable for *mut T

Source§

fn is_null(&self) -> bool

Implementors§