Skip to main content

IRpcChannelBuffer_Impl

Trait IRpcChannelBuffer_Impl 

Source
pub trait IRpcChannelBuffer_Impl: IUnknownImpl {
    // Required methods
    fn GetBuffer(
        &self,
        pmessage: *mut RPCOLEMESSAGE,
        riid: *const GUID,
    ) -> Result<(), Error>;
    fn SendReceive(
        &self,
        pmessage: *mut RPCOLEMESSAGE,
        pstatus: *mut u32,
    ) -> Result<(), Error>;
    fn FreeBuffer(&self, pmessage: *mut RPCOLEMESSAGE) -> Result<(), Error>;
    fn GetDestCtx(
        &self,
        pdwdestcontext: *mut u32,
        ppvdestcontext: *mut *mut c_void,
    ) -> Result<(), Error>;
    fn IsConnected(&self) -> Result<(), Error>;
}

Required Methods§

Source

fn GetBuffer( &self, pmessage: *mut RPCOLEMESSAGE, riid: *const GUID, ) -> Result<(), Error>

Source

fn SendReceive( &self, pmessage: *mut RPCOLEMESSAGE, pstatus: *mut u32, ) -> Result<(), Error>

Source

fn FreeBuffer(&self, pmessage: *mut RPCOLEMESSAGE) -> Result<(), Error>

Source

fn GetDestCtx( &self, pdwdestcontext: *mut u32, ppvdestcontext: *mut *mut c_void, ) -> Result<(), Error>

Source

fn IsConnected(&self) -> Result<(), Error>

Dyn Compatibility§

This trait is not dyn compatible.

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

Implementors§