Trait thunk::Lazy [] [src]

pub trait Lazy: LazyMut where
    Self::Target: Sized
{ fn unwrap(self) -> Self::Target; }

The Lazy trait abstracts owned, lazily computed values.

Required Methods

Unwrap a thunk into its inner value. This forces the thunk.

Implementors