Trait IWMCodecProps_Impl
pub trait IWMCodecProps_Impl: IUnknownImpl {
// Required methods
fn GetFormatProp(
&self,
pmt: *mut DMO_MEDIA_TYPE,
pszname: &PCWSTR,
ptype: *mut WMT_PROP_DATATYPE,
pvalue: *mut u8,
pdwsize: *mut u32,
) -> Result<()>;
fn GetCodecProp(
&self,
dwformat: u32,
pszname: &PCWSTR,
ptype: *mut WMT_PROP_DATATYPE,
pvalue: *mut u8,
pdwsize: *mut u32,
) -> Result<()>;
}
Required Methods§
fn GetFormatProp( &self, pmt: *mut DMO_MEDIA_TYPE, pszname: &PCWSTR, ptype: *mut WMT_PROP_DATATYPE, pvalue: *mut u8, pdwsize: *mut u32, ) -> Result<()>
fn GetCodecProp( &self, dwformat: u32, pszname: &PCWSTR, ptype: *mut WMT_PROP_DATATYPE, pvalue: *mut u8, pdwsize: *mut u32, ) -> 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.