pub trait IWbemObjectSink_Impl: Sized {
    // Required methods
    fn Indicate(
        &self,
        lobjectcount: i32,
        apobjarray: *const Option<IWbemClassObject>
    ) -> Result<()>;
    fn SetStatus(
        &self,
        lflags: i32,
        hresult: HRESULT,
        strparam: &BSTR,
        pobjparam: Option<&IWbemClassObject>
    ) -> Result<()>;
}

Required Methods§

fn Indicate( &self, lobjectcount: i32, apobjarray: *const Option<IWbemClassObject> ) -> Result<()>

fn SetStatus( &self, lflags: i32, hresult: HRESULT, strparam: &BSTR, pobjparam: Option<&IWbemClassObject> ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§