Trait IMapMIMEToCLSID_Impl
pub trait IMapMIMEToCLSID_Impl: IUnknownImpl {
// Required methods
fn EnableDefaultMappings(&self, benable: BOOL) -> Result<()>;
fn MapMIMEToCLSID(
&self,
pszmimetype: &PCWSTR,
pclsid: *const GUID,
) -> Result<()>;
fn SetMapping(
&self,
pszmimetype: &PCWSTR,
dwmapmode: u32,
clsid: *const GUID,
) -> Result<()>;
}
Required Methods§
fn EnableDefaultMappings(&self, benable: BOOL) -> Result<()>
fn MapMIMEToCLSID( &self, pszmimetype: &PCWSTR, pclsid: *const GUID, ) -> Result<()>
fn SetMapping( &self, pszmimetype: &PCWSTR, dwmapmode: u32, clsid: *const GUID, ) -> 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.