pub trait HasAudioInfo {
    // Required method
    fn get(&self) -> &AudioInfo;
}
Available on crate feature interface only.
Expand description

Callback command with audio info. Used to abstract away the command type in client code

Required Methods§

source

fn get(&self) -> &AudioInfo

Get the audio info.

Implementors§