Enum futures_core::Async [] [src]

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

Indicates whether a value is available, or if the current task has been scheduled for later wake-up instead.

Variants

Represents that a value is immediately ready.

Represents that a value is not ready yet.

When a function returns Pending, the function must also ensure that the current task is scheduled to be awoken when progress can be made.

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::Pending

Trait Implementations

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

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

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

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

[src]

Formats the value using the given formatter. Read more

impl<T: PartialEq> PartialEq for Async<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> From<T> for Async<T>
[src]

[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