pub trait DriverExt: Sized {
// Required methods
fn new(cfg: Config) -> Result<Self>;
fn init_thread(cpu_id: u16) -> Result<()>;
fn allowed_cpus() -> Result<Vec<u16>>;
}Required Methods§
fn new(cfg: Config) -> Result<Self>
fn init_thread(cpu_id: u16) -> Result<()>
fn allowed_cpus() -> Result<Vec<u16>>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".