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

The stream which is used for async audio input

Required Methods§

source

fn get_frames_read(&mut self) -> i64

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

Implementors§

source§

impl<T: RawAudioInputStream + RawAudioStream + RawAudioStreamBase> AudioInputStreamSafe for T