pub trait Spawner { fn spawn<F>(future: F) where F: Future + Send + 'static, F::Output: Send; }
A facility to spawn asynchronous tasks.