[][src]Struct ico_memory::mem::Nullable

pub struct Nullable<T: MaybeNull> { /* fields omitted */ }

Methods

impl<T: MaybeNull> Nullable<T>[src]

pub fn new(value: T) -> Nullable<T>[src]

pub fn null() -> Nullable<T>[src]

pub fn is_null(&self) -> bool[src]

pub fn get(self) -> Option<T>[src]

pub fn get_ref(&self) -> Option<&T>[src]

pub fn get_mut(&mut self) -> Option<&mut T>[src]

pub fn take(&mut self) -> Nullable<T>[src]

pub fn replace(&mut self, value: T) -> Nullable<T>[src]

pub fn map<U: MaybeNull, F>(self, f: F) -> Nullable<U> where
    F: FnOnce(T) -> U, 
[src]

Trait Implementations

impl<T: Eq + MaybeNull> Eq for Nullable<T>[src]

impl<T> Clone for Nullable<T> where
    T: MaybeNull + Clone
[src]

impl<T: PartialOrd + MaybeNull> PartialOrd<Nullable<T>> for Nullable<T>[src]

impl<T: PartialEq + MaybeNull> PartialEq<Nullable<T>> for Nullable<T>[src]

impl<T: Ord + MaybeNull> Ord for Nullable<T>[src]

impl<T: Copy + MaybeNull> Copy for Nullable<T>[src]

impl<T: Hash + MaybeNull> Hash for Nullable<T>[src]

impl<T: Debug + MaybeNull> Debug for Nullable<T>[src]

Auto Trait Implementations

impl<T> Sync for Nullable<T> where
    T: Sync

impl<T> Send for Nullable<T> where
    T: Send

impl<T> Unpin for Nullable<T> where
    T: Unpin

impl<T> UnwindSafe for Nullable<T> where
    T: UnwindSafe

impl<T> RefUnwindSafe for Nullable<T> where
    T: RefUnwindSafe

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]