pub trait IInstallationProgress_Impl: Sized + 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§

Object Safety§

This trait is not object safe.

Implementors§