Skip to main content

IAsyncRpcChannelBuffer_Impl

Trait IAsyncRpcChannelBuffer_Impl 

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

Required Methods§

Source

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

Source

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

Source

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

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§