pub trait AudioOutputStreamSafe: AudioStreamSafe {
    // Required method
    fn get_frames_written(&mut self) -> i64;
}
Expand description

The stream which is used for async audio output

Required Methods§

source

fn get_frames_written(&mut self) -> i64

The number of audio frames written into the stream. This monotonic counter will never get reset.

Implementors§

source§

impl<T: RawAudioOutputStream + RawAudioStream + RawAudioStreamBase> AudioOutputStreamSafe for T