Struct futures_executor::Spawn [] [src]

pub struct Spawn<F>(_);

A future representing the completion of task spawning.

See spawn for details.

Trait Implementations

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

[src]

Formats the value using the given formatter. Read more

impl<F: Future<Item = (), Error = Never> + Send + 'static> Future for Spawn<F>
[src]

A successful value

An error

[src]

Attempt to resolve the future to a final value, registering the current task for wakeup if the value is not yet available. Read more

Auto Trait Implementations

impl<F> Send for Spawn<F> where
    F: Send

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