pub trait IOfflineFilesProgress_Impl: Sized {
    // Required methods
    fn Begin(&self) -> Result<BOOL>;
    fn QueryAbort(&self) -> Result<BOOL>;
    fn End(&self, hrresult: HRESULT) -> Result<()>;
}

Required Methods§

fn Begin(&self) -> Result<BOOL>

fn QueryAbort(&self) -> Result<BOOL>

fn End(&self, hrresult: HRESULT) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§