Trait IPackageUtil_Impl
pub trait IPackageUtil_Impl: IDispatch_Impl {
// Required methods
fn InstallPackage(
&self,
bstrpackagefile: &BSTR,
bstrinstallpath: &BSTR,
loptions: i32,
) -> Result<()>;
fn ExportPackage(
&self,
bstrpackageid: &BSTR,
bstrpackagefile: &BSTR,
loptions: i32,
) -> Result<()>;
fn ShutdownPackage(&self, bstrpackageid: &BSTR) -> Result<()>;
}
Required Methods§
fn InstallPackage( &self, bstrpackagefile: &BSTR, bstrinstallpath: &BSTR, loptions: i32, ) -> Result<()>
fn ExportPackage( &self, bstrpackageid: &BSTR, bstrpackagefile: &BSTR, loptions: i32, ) -> Result<()>
fn ShutdownPackage(&self, bstrpackageid: &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.