Struct fibers::BoxSpawn[][src]

pub struct BoxSpawn(_);

Boxed Spawn object.

Trait Implementations

impl Spawn for BoxSpawn
[src]

Spawns a fiber which will execute given boxed future.

Converts this instance into a boxed object.

Spawns a fiber which will execute given future.

Equivalent to self.spawn(futures::lazy(|| f())).

Spawns a fiber and returns a future to monitor it's execution result.

Spawns a linked fiber. Read more

impl Debug for BoxSpawn
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for BoxSpawn

impl !Sync for BoxSpawn