Trait IFileSourceFilter_Impl
pub trait IFileSourceFilter_Impl: IUnknownImpl {
// Required methods
fn Load(
&self,
pszfilename: &PCWSTR,
pmt: *const AM_MEDIA_TYPE,
) -> Result<()>;
fn GetCurFile(
&self,
ppszfilename: *mut PWSTR,
pmt: *mut AM_MEDIA_TYPE,
) -> Result<()>;
}
Required Methods§
fn Load(&self, pszfilename: &PCWSTR, pmt: *const AM_MEDIA_TYPE) -> Result<()>
fn GetCurFile( &self, ppszfilename: *mut PWSTR, pmt: *mut AM_MEDIA_TYPE, ) -> 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.