pub trait IWiaErrorHandler_Impl: Sized {
    // Required methods
    fn ReportStatus(
        &self,
        lflags: i32,
        hwndparent: HWND,
        pwiaitem2: Option<&IWiaItem2>,
        hrstatus: HRESULT,
        lpercentcomplete: i32
    ) -> Result<()>;
    fn GetStatusDescription(
        &self,
        lflags: i32,
        pwiaitem2: Option<&IWiaItem2>,
        hrstatus: HRESULT
    ) -> Result<BSTR>;
}

Required Methods§

fn ReportStatus( &self, lflags: i32, hwndparent: HWND, pwiaitem2: Option<&IWiaItem2>, hrstatus: HRESULT, lpercentcomplete: i32 ) -> Result<()>

fn GetStatusDescription( &self, lflags: i32, pwiaitem2: Option<&IWiaItem2>, hrstatus: HRESULT ) -> Result<BSTR>

Object Safety§

This trait is not object safe.

Implementors§