pub trait ISendMethodEvents_Impl: Sized {
    // Required methods
    fn SendMethodCall(
        &self,
        pidentity: *const c_void,
        riid: *const GUID,
        dwmeth: u32
    ) -> Result<()>;
    fn SendMethodReturn(
        &self,
        pidentity: *const c_void,
        riid: *const GUID,
        dwmeth: u32,
        hrcall: HRESULT,
        hrserver: HRESULT
    ) -> Result<()>;
}

Required Methods§

fn SendMethodCall( &self, pidentity: *const c_void, riid: *const GUID, dwmeth: u32 ) -> Result<()>

fn SendMethodReturn( &self, pidentity: *const c_void, riid: *const GUID, dwmeth: u32, hrcall: HRESULT, hrserver: HRESULT ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§