Trait lighthouse_client::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§
Object Safety§
This trait is not object safe.