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

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

Required Methods§

source

fn get(&self) -> &AudioBuffer

Get the audio buffer.

Implementors§