pub trait Mode {
// Required method
fn init();
}Expand description
A trait shared between the Host and RCP modes providing the option for these
to do additional initialization.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".