Skip to main content

AudioApp

Trait AudioApp 

Source
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§

Source

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".

Implementations on Foreign Types§

Source§

impl AudioApp for App

Source§

fn add_audio_channel<T: AudioChannelMarker>(&mut self) -> &mut Self

Implementors§