pub trait AudioApp {
// Required method
fn add_audio_channel<T: AudioChannelMarker>(&mut self) -> &mut Self;
}Expand description
Extension trait for App to add audio channels with automatic system registration
Required Methods§
fn add_audio_channel<T: AudioChannelMarker>(&mut self) -> &mut Self
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".