pub trait Executor: Send + Sync {
// Required method
fn spawn_ok(&self, task: BoxFuture<'static, ()>);
}Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".