[][src]Struct ico_memory::mem::NullableIndexedRef

pub struct NullableIndexedRef<'a, T> { /* fields omitted */ }

Methods

impl<'a, T> NullableIndexedRef<'a, T>[src]

pub fn some(index_ref: IndexedRef<'a, T>) -> NullableIndexedRef<'a, T>[src]

pub fn none() -> NullableIndexedRef<'a, T>[src]

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

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

pub fn unwrap(self) -> IndexedRef<'a, T>[src]

Trait Implementations

impl<'a, T: PartialEq> PartialEq<NullableIndexedRef<'a, T>> for NullableIndexedRef<'a, T>[src]

impl<'a, T: Eq> Eq for NullableIndexedRef<'a, T>[src]

impl<'a, T: Hash> Hash for NullableIndexedRef<'a, T>[src]

impl<'a, T: Debug> Debug for NullableIndexedRef<'a, T>[src]

Auto Trait Implementations

impl<'a, T> Unpin for NullableIndexedRef<'a, T>

impl<'a, T> !Send for NullableIndexedRef<'a, T>

impl<'a, T> !Sync for NullableIndexedRef<'a, T>

Blanket Implementations

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> Into<U> for T where
    U: From<T>, 
[src]

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> Borrow<T> for T where
    T: ?Sized
[src]

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

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