Trait Spawner

Source
pub trait Spawner {
    // Required method
    fn spawn<F>(future: F)
       where F: Future + Send + 'static,
             F::Output: Send;
}
Expand description

A facility to spawn asynchronous tasks.

Required Methods§

Source

fn spawn<F>(future: F)
where F: Future + Send + 'static, F::Output: Send,

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§