windows::Win32::System::ComponentServices

Trait ISendMethodEvents_Impl

pub trait ISendMethodEvents_Impl: IUnknownImpl {
    // 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<()>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§