pub trait SpawnHandle:
Clone
+ Send
+ 'static {
// Required methods
fn spawn(
&self,
name: &'static str,
task: impl Future<Output = ()> + Send + 'static,
);
fn spawn_essential(
&self,
name: &'static str,
task: impl Future<Output = ()> + Send + 'static,
) -> Pin<Box<dyn Future<Output = Result<(), ()>> + Send>>;
}
Expand description
An abstraction for an execution engine for Rust’s 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.