Trait IInstallationProgress_Impl
pub trait IInstallationProgress_Impl: IDispatch_Impl {
// Required methods
fn CurrentUpdateIndex(&self) -> Result<i32>;
fn CurrentUpdatePercentComplete(&self) -> Result<i32>;
fn PercentComplete(&self) -> Result<i32>;
fn GetUpdateResult(
&self,
updateindex: i32,
) -> Result<IUpdateInstallationResult>;
}
Required Methods§
fn CurrentUpdateIndex(&self) -> Result<i32>
fn CurrentUpdatePercentComplete(&self) -> Result<i32>
fn PercentComplete(&self) -> Result<i32>
fn GetUpdateResult(&self, updateindex: i32) -> Result<IUpdateInstallationResult>
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.