Enum tokio::prelude::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]

[src]

Change the success value of this Async with the closure provided

[src]

Returns whether this is Async::Ready

[src]

Returns whether this is Async::NotReady

Trait Implementations

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

[src]

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

[src]

This method tests for !=.

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

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

[src]

Formats the value using the given formatter. Read more

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

[src]

Performs the conversion.

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

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

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

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