pub trait Executor {
// Required method
fn spawn<F>(
&self,
f: F,
) -> Pin<Box<dyn Future<Output = Result<<F as Future>::Output, VortexError>> + Send>>
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.