pub trait IWMStatusCallback_Impl: Sized {
    // Required method
    fn OnStatus(
        &self,
        status: WMT_STATUS,
        hr: HRESULT,
        dwtype: WMT_ATTR_DATATYPE,
        pvalue: *const u8,
        pvcontext: *const c_void
    ) -> Result<()>;
}

Required Methods§

fn OnStatus( &self, status: WMT_STATUS, hr: HRESULT, dwtype: WMT_ATTR_DATATYPE, pvalue: *const u8, pvcontext: *const c_void ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§