Trait IDownloadProgress_Impl
pub trait IDownloadProgress_Impl: 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§
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>
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.