Trait IPMExtensionFileExtensionInfo_Impl
pub trait IPMExtensionFileExtensionInfo_Impl: IUnknownImpl {
// Required methods
fn Name(&self, pname: *mut BSTR) -> Result<()>;
fn DisplayName(&self, pdisplayname: *mut BSTR) -> Result<()>;
fn get_Logo(&self, logosize: PM_LOGO_SIZE, plogo: *mut BSTR) -> Result<()>;
fn get_ContentType(
&self,
filetype: &BSTR,
pcontenttype: *mut BSTR,
) -> Result<()>;
fn get_FileType(
&self,
contenttype: &BSTR,
pfiletype: *mut BSTR,
) -> Result<()>;
fn get_InvocationInfo(
&self,
pimageurn: *mut BSTR,
pparameters: *mut BSTR,
) -> Result<()>;
fn get_AllFileTypes(
&self,
pcbtypes: *mut u32,
pptypes: *mut *mut BSTR,
) -> Result<()>;
}
Required Methods§
fn Name(&self, pname: *mut BSTR) -> Result<()>
fn DisplayName(&self, pdisplayname: *mut BSTR) -> Result<()>
fn get_Logo(&self, logosize: PM_LOGO_SIZE, plogo: *mut BSTR) -> Result<()>
fn get_ContentType( &self, filetype: &BSTR, pcontenttype: *mut BSTR, ) -> Result<()>
fn get_FileType(&self, contenttype: &BSTR, pfiletype: *mut BSTR) -> Result<()>
fn get_InvocationInfo( &self, pimageurn: *mut BSTR, pparameters: *mut BSTR, ) -> Result<()>
fn get_AllFileTypes( &self, pcbtypes: *mut u32, pptypes: *mut *mut BSTR, ) -> 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.