Enum futures::Async [−][src]
pub enum Async<T> { Ready(T), NotReady, }
Expand description
Return type of future, indicating whether a value is ready or not.
Variants
Represents that a value is immediately ready.
Represents that a value is not ready yet, but may be so later.
Implementations
Trait Implementations
Auto Trait Implementations
impl<T> RefUnwindSafe for Async<T> where
T: RefUnwindSafe,
impl<T> UnwindSafe for Async<T> where
T: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more