pub trait Executor {
// Required method
fn spawn<F>(&self, f: F) -> BoxFuture<'static, VortexResult<F::Output>>
where F: Future + Send + 'static,
<F as Future>::Output: Send + 'static;
}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.