Enum futures::Async[][src]

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

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.

Methods

impl<T> Async<T>
[src]

Change the success value of this Async with the closure provided

Returns whether this is Async::Ready

Returns whether this is Async::NotReady

Trait Implementations

impl<T: Copy> Copy for Async<T>
[src]

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

Formats the value using the given formatter. Read more

impl<T: PartialEq> PartialEq for Async<T>
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

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

Performs the conversion.

Auto Trait Implementations

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

impl<T> Sync for Async<T> where
    T: Sync