Struct rinutil::Lazy[][src]

pub struct Lazy<T> { /* fields omitted */ }

Methods

impl<T> Lazy<T>
[src]

Trait Implementations

impl<T: Debug> Debug for Lazy<T>
[src]

Formats the value using the given formatter. Read more

impl<T: Clone> Clone for Lazy<T>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<T> Borrow<T> for Lazy<T>
[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for Lazy<T>
[src]

Mutably borrows from an owned value. Read more

impl<T> Deref for Lazy<T>
[src]

The resulting type after dereferencing.

Dereferences the value.

impl<T> DerefMut for Lazy<T>
[src]

Mutably dereferences the value.

impl<T> AsRef<T> for Lazy<T>
[src]

Performs the conversion.

impl<T> AsMut<T> for Lazy<T>
[src]

Performs the conversion.

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

Performs the conversion.

Auto Trait Implementations

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

impl<T> !Sync for Lazy<T>