pub trait AudioSrcImpl: AudioBaseSrcImpl + ObjectSubclass<Type: IsA<AudioSrc>> {
// Provided methods
fn close(&self) -> Result<(), LoggableError> { ... }
fn delay(&self) -> u32 { ... }
fn open(&self) -> Result<(), LoggableError> { ... }
fn prepare(
&self,
spec: &mut AudioRingBufferSpec,
) -> Result<(), LoggableError> { ... }
fn unprepare(&self) -> Result<(), LoggableError> { ... }
fn read(
&self,
audio_data: &mut [u8],
) -> Result<(u32, Option<ClockTime>), LoggableError> { ... }
fn reset(&self) { ... }
}
Provided Methods§
Sourcefn close(&self) -> Result<(), LoggableError>
fn close(&self) -> Result<(), LoggableError>
close the device
Sourcefn open(&self) -> Result<(), LoggableError>
fn open(&self) -> Result<(), LoggableError>
open the device with the specified caps
Sourcefn prepare(&self, spec: &mut AudioRingBufferSpec) -> Result<(), LoggableError>
fn prepare(&self, spec: &mut AudioRingBufferSpec) -> Result<(), LoggableError>
configure device with format
Sourcefn unprepare(&self) -> Result<(), LoggableError>
fn unprepare(&self) -> Result<(), LoggableError>
undo the configuration
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.