pub trait IAsyncRpcChannelBuffer_Impl: Sized + IRpcChannelBuffer2_Impl {
    // Required methods
    fn Send(
        &self,
        pmsg: *mut RPCOLEMESSAGE,
        psync: Option<&ISynchronize>,
        pulstatus: *mut u32
    ) -> Result<()>;
    fn Receive(
        &self,
        pmsg: *mut RPCOLEMESSAGE,
        pulstatus: *mut u32
    ) -> Result<()>;
    fn GetDestCtxEx(
        &self,
        pmsg: *const RPCOLEMESSAGE,
        pdwdestcontext: *mut u32,
        ppvdestcontext: *mut *mut c_void
    ) -> Result<()>;
}

Required Methods§

fn Send( &self, pmsg: *mut RPCOLEMESSAGE, psync: Option<&ISynchronize>, pulstatus: *mut u32 ) -> Result<()>

fn Receive(&self, pmsg: *mut RPCOLEMESSAGE, pulstatus: *mut u32) -> Result<()>

fn GetDestCtxEx( &self, pmsg: *const RPCOLEMESSAGE, pdwdestcontext: *mut u32, ppvdestcontext: *mut *mut c_void ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§