Struct futures::executor::Spawn[][src]

pub struct Spawn<F> { /* fields omitted */ }

A future representing the completion of task spawning.

See spawn for details.

Trait Implementations

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

Formats the value using the given formatter. Read more

impl<F> Future for Spawn<F> where
    F: 'static + Send + Future<Output = ()>, 
[src]

🔬 This is a nightly-only experimental API. (futures_api)

futures in libcore are unstable

The result of the Future.

🔬 This is a nightly-only experimental API. (futures_api)

futures in libcore are unstable

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