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> Future for Spawn<F> where
    F: Send + Future<Item = (), Error = Never> + 'static, 
[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

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

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

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

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