Struct futures_spawn::NewThread
[−]
[src]
pub struct NewThread;
Spawn all futures on a new thread
This is the most basic Spawn
implementation. Each call to spawn
results
in a new thread dedicated to processing the given future to completion.
Trait Implementations
impl<T: Future<Item=(), Error=()> + Send + 'static> Spawn<T> for NewThread
[src]
fn spawn_detached(&self, future: T)
Spawns a future to run on this Spawn
. Read more