[][src]Trait oboe::AudioInputStreamSafe

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

The stream which is used for async audio input

Required methods

fn get_frames_read(&mut self) -> i64

The number of audio frames read from the stream. This monotonic counter will never get reset.

Loading content...

Implementors

impl<T: RawAudioInputStream + RawAudioStream + RawAudioStreamBase> AudioInputStreamSafe for T[src]

Loading content...