pub trait Backend:
Send
+ Sync
+ 'static {
type Driver: HwWorkerDriver + Send + 'static;
type MidiHub: HwMidiHub + Send + 'static;
const LABEL: &'static str;
const WORKER_THREAD_NAME: &'static str;
const ASSIST_THREAD_NAME: &'static str;
const ASSIST_AUTONOMOUS_ENV: &'static str;
}Required Associated Constants§
const LABEL: &'static str
const WORKER_THREAD_NAME: &'static str
const ASSIST_THREAD_NAME: &'static str
const ASSIST_AUTONOMOUS_ENV: &'static str
Required Associated Types§
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.