Struct finchers_core::task::TaskFuture [] [src]

pub struct TaskFuture<F>(_);

A helper struct which wraps a Future and provides the implementation of Task.

Trait Implementations

impl<F: Debug> Debug for TaskFuture<F>
[src]

[src]

Formats the value using the given formatter. Read more

impl<F> From<F> for TaskFuture<F> where
    F: Future + Send
[src]

[src]

Performs the conversion.

impl<F> Task for TaskFuture<F> where
    F: Future + Send
[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<F> Send for TaskFuture<F> where
    F: Send

impl<F> Sync for TaskFuture<F> where
    F: Sync