Trait Audio SrcImpl 
Source 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 prepare(&self, spec: &mut AudioRingBufferSpec) -> Result<(), LoggableError>
 
fn prepare(&self, spec: &mut AudioRingBufferSpec) -> Result<(), LoggableError>
configure device with format
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.