pub trait AudioDeviceDriver {
    fn status(&self) -> AudioStatus;
    fn driver(&self) -> &'static str;
    fn spec(&self) -> AudioSpec;
    fn resume(&self);
    fn pause(&self);
}
Expand description

Provides access to audio device driver properties and controlling playback.

Required Methods

Return the status of this audio callback device.

Return the current driver of this audio callback device.

Returns the AudioSpec for this audio callback device.

Resumes playback of this audio callback device.

Pause playback of this audio callback device.

Implementors