pub trait IProgressItem_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn Description(&self) -> Result<BSTR>;
    fn FirstBlock(&self) -> Result<u32>;
    fn LastBlock(&self) -> Result<u32>;
    fn BlockCount(&self) -> Result<u32>;
}

Required Methods§

fn Description(&self) -> Result<BSTR>

fn FirstBlock(&self) -> Result<u32>

fn LastBlock(&self) -> Result<u32>

fn BlockCount(&self) -> Result<u32>

Object Safety§

This trait is not object safe.

Implementors§