Enum immutable_seq::lazy::ThunkResult
[−]
[src]
pub enum ThunkResult<T> { Value(T), Redirect(Thunk<T>), }
Represents the two possible things a Thunk<T>
can return: either a T
value, or another Thunk<T>
.
Variants
Value(T)
Redirect(Thunk<T>)