Trait IApoAuxiliaryInputConfiguration_Impl
pub trait IApoAuxiliaryInputConfiguration_Impl: IUnknownImpl {
// Required methods
fn AddAuxiliaryInput(
&self,
dwinputid: u32,
cbdatasize: u32,
pbydata: *const u8,
pinputconnection: *const APO_CONNECTION_DESCRIPTOR,
) -> Result<()>;
fn RemoveAuxiliaryInput(&self, dwinputid: u32) -> Result<()>;
fn IsInputFormatSupported(
&self,
prequestedinputformat: Ref<'_, IAudioMediaType>,
) -> Result<IAudioMediaType>;
}
Required Methods§
fn AddAuxiliaryInput( &self, dwinputid: u32, cbdatasize: u32, pbydata: *const u8, pinputconnection: *const APO_CONNECTION_DESCRIPTOR, ) -> Result<()>
fn RemoveAuxiliaryInput(&self, dwinputid: u32) -> Result<()>
fn IsInputFormatSupported( &self, prequestedinputformat: Ref<'_, IAudioMediaType>, ) -> Result<IAudioMediaType>
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.