Enum valuable_futures::Async [] [src]

pub enum Async<A, F> {
    Ready(A),
    NotReady(F),
}

A variant of futures::Async that carries state in NotReady

Variants

Represents that a value is already ready

Represents that a value is not ready yet, and carries next state of the future