Struct finchers_core::task::Ready [] [src]

pub struct Ready<T>(_);

A Task which will immediately return a value of T.

Trait Implementations

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

[src]

Formats the value using the given formatter. Read more

impl<T: Send> From<T> for Ready<T>
[src]

[src]

Performs the conversion.

impl<T: Send> Task for Ready<T>
[src]

The inner type of an output which will be returned from this task.

[src]

Perform polling this task and get its result.

Auto Trait Implementations

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

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