[][src]Enum lazy_futuristic::ValueOrSetter

pub enum ValueOrSetter<'l, T> {
    Value(&'l T),
    Setter(Setter<'l, T>),
}

Indicates the value or needs to set the value.

Variants

Value(&'l T)

Initialization has been done and value is returned.

Setter(Setter<'l, T>)

Initialization hasn't been done yet and caller has chance to initialize the value.

Trait Implementations

impl<'l, T: Debug> Debug for ValueOrSetter<'l, T>[src]

Auto Trait Implementations

impl<'l, T> !RefUnwindSafe for ValueOrSetter<'l, T>

impl<'l, T> Send for ValueOrSetter<'l, T> where
    T: Sync

impl<'l, T> Sync for ValueOrSetter<'l, T> where
    T: Sync

impl<'l, T> Unpin for ValueOrSetter<'l, T>

impl<'l, T> !UnwindSafe for ValueOrSetter<'l, T>

Blanket Implementations

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

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

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

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

impl<T, U> Into<U> for T where
    U: From<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.