windows::Win32::System::Search

Trait IDBAsynchNotify_Impl

pub trait IDBAsynchNotify_Impl: IUnknownImpl {
    // Required methods
    fn OnLowResource(&self, dwreserved: usize) -> Result<()>;
    fn OnProgress(
        &self,
        hchapter: usize,
        eoperation: u32,
        ulprogress: usize,
        ulprogressmax: usize,
        easynchphase: u32,
        pwszstatustext: &PCWSTR,
    ) -> Result<()>;
    fn OnStop(
        &self,
        hchapter: usize,
        eoperation: u32,
        hrstatus: HRESULT,
        pwszstatustext: &PCWSTR,
    ) -> Result<()>;
}

Required Methods§

fn OnLowResource(&self, dwreserved: usize) -> Result<()>

fn OnProgress( &self, hchapter: usize, eoperation: u32, ulprogress: usize, ulprogressmax: usize, easynchphase: u32, pwszstatustext: &PCWSTR, ) -> Result<()>

fn OnStop( &self, hchapter: usize, eoperation: u32, hrstatus: HRESULT, pwszstatustext: &PCWSTR, ) -> 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.

Implementors§