[][src]Trait oboe::AudioOutputStreamSafe

pub trait AudioOutputStreamSafe: AudioStreamSafe {
    fn get_frames_written(&mut self) -> i64;
}

The stream which is used for async audio output

Required methods

fn get_frames_written(&mut self) -> i64

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

Loading content...

Implementors

impl<T: RawAudioOutputStream + RawAudioStream + RawAudioStreamBase> AudioOutputStreamSafe for T[src]

Loading content...