pub trait IProgressNotify_Impl: Sized {
    // Required method
    fn OnProgress(
        &self,
        dwprogresscurrent: u32,
        dwprogressmaximum: u32,
        faccurate: BOOL,
        fowner: BOOL
    ) -> Result<()>;
}

Required Methods§

fn OnProgress( &self, dwprogresscurrent: u32, dwprogressmaximum: u32, faccurate: BOOL, fowner: BOOL ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§