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;
const ASSIST_STEP_REQUIRES_REQUEST_CYCLE: bool = false;
}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
Provided Associated Constants§
const ASSIST_STEP_REQUIRES_REQUEST_CYCLE: bool = false
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.