Trait IProgressNotify_Impl
pub trait IProgressNotify_Impl: IUnknownImpl {
// 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<()>
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.