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§
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.