pub trait IComMethod2Events_Impl: Sized {
    // Required methods
    fn OnMethodCall2(
        &self,
        pinfo: *const COMSVCSEVENTINFO,
        oid: u64,
        guidcid: *const GUID,
        guidrid: *const GUID,
        dwthread: u32,
        imeth: u32
    ) -> Result<()>;
    fn OnMethodReturn2(
        &self,
        pinfo: *const COMSVCSEVENTINFO,
        oid: u64,
        guidcid: *const GUID,
        guidrid: *const GUID,
        dwthread: u32,
        imeth: u32,
        hresult: HRESULT
    ) -> Result<()>;
    fn OnMethodException2(
        &self,
        pinfo: *const COMSVCSEVENTINFO,
        oid: u64,
        guidcid: *const GUID,
        guidrid: *const GUID,
        dwthread: u32,
        imeth: u32
    ) -> Result<()>;
}

Required Methods§

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

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

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

Object Safety§

This trait is not object safe.

Implementors§