Trait IPMExtensionInfo_Impl
pub trait IPMExtensionInfo_Impl: IUnknownImpl {
// Required methods
fn SupplierPID(&self) -> Result<GUID>;
fn SupplierTaskID(&self, psuppliertid: *mut BSTR) -> Result<()>;
fn Title(&self, ptitle: *mut BSTR) -> Result<()>;
fn IconPath(&self, piconpath: *mut BSTR) -> Result<()>;
fn ExtraFile(&self, pfilepath: *mut BSTR) -> Result<()>;
fn get_InvocationInfo(
&self,
pimageurn: *mut BSTR,
pparameters: *mut BSTR,
) -> Result<()>;
}
Required Methods§
fn SupplierPID(&self) -> Result<GUID>
fn SupplierTaskID(&self, psuppliertid: *mut BSTR) -> Result<()>
fn Title(&self, ptitle: *mut BSTR) -> Result<()>
fn IconPath(&self, piconpath: *mut BSTR) -> Result<()>
fn ExtraFile(&self, pfilepath: *mut BSTR) -> Result<()>
fn get_InvocationInfo( &self, pimageurn: *mut BSTR, pparameters: *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.