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§
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>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".