pub trait IDownloadProgress_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn CurrentUpdateBytesDownloaded(&self) -> Result<DECIMAL>;
    fn CurrentUpdateBytesToDownload(&self) -> Result<DECIMAL>;
    fn CurrentUpdateIndex(&self) -> Result<i32>;
    fn PercentComplete(&self) -> Result<i32>;
    fn TotalBytesDownloaded(&self) -> Result<DECIMAL>;
    fn TotalBytesToDownload(&self) -> Result<DECIMAL>;
    fn GetUpdateResult(&self, updateindex: i32) -> Result<IUpdateDownloadResult>;
    fn CurrentUpdateDownloadPhase(&self) -> Result<DownloadPhase>;
    fn CurrentUpdatePercentComplete(&self) -> Result<i32>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§