Trait IAudioSourceProvider_Impl
pub trait IAudioSourceProvider_Impl: IUnknownImpl {
// Required method
fn ProvideInput(
&self,
dwsamplecount: u32,
pdwchannelcount: *mut u32,
pinterleavedaudiodata: *mut f32,
) -> Result<()>;
}
Required Methods§
fn ProvideInput( &self, dwsamplecount: u32, pdwchannelcount: *mut u32, pinterleavedaudiodata: *mut f32, ) -> Result<()>
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.