pub trait SpawnExt3<T1, T2, T3>: ParameterizedSpawn<(T1, T2, T3)> {
// Required method
fn spawn(
&mut self,
a: T1,
b: T2,
c: T3,
) -> Result<Self::Output, Self::Error>;
}Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".