pub trait Wrapper {
// Required method
fn spawn(&self, ctx: &WrapperContext) -> Result<Child>;
}Required Methods§
fn spawn(&self, ctx: &WrapperContext) -> Result<Child>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".