pub trait IComMethodEvents_Impl: Sized {
    // Required methods
    fn OnMethodCall(
        &self,
        pinfo: *const COMSVCSEVENTINFO,
        oid: u64,
        guidcid: *const GUID,
        guidrid: *const GUID,
        imeth: u32
    ) -> Result<()>;
    fn OnMethodReturn(
        &self,
        pinfo: *const COMSVCSEVENTINFO,
        oid: u64,
        guidcid: *const GUID,
        guidrid: *const GUID,
        imeth: u32,
        hresult: HRESULT
    ) -> Result<()>;
    fn OnMethodException(
        &self,
        pinfo: *const COMSVCSEVENTINFO,
        oid: u64,
        guidcid: *const GUID,
        guidrid: *const GUID,
        imeth: u32
    ) -> Result<()>;
}

Required Methods§

fn OnMethodCall( &self, pinfo: *const COMSVCSEVENTINFO, oid: u64, guidcid: *const GUID, guidrid: *const GUID, imeth: u32 ) -> Result<()>

fn OnMethodReturn( &self, pinfo: *const COMSVCSEVENTINFO, oid: u64, guidcid: *const GUID, guidrid: *const GUID, imeth: u32, hresult: HRESULT ) -> Result<()>

fn OnMethodException( &self, pinfo: *const COMSVCSEVENTINFO, oid: u64, guidcid: *const GUID, guidrid: *const GUID, imeth: u32 ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§