Trait IRpcChannelBuffer_Impl
pub trait IRpcChannelBuffer_Impl: IUnknownImpl {
// Required methods
fn GetBuffer(
&self,
pmessage: *mut RPCOLEMESSAGE,
riid: *const GUID,
) -> Result<()>;
fn SendReceive(
&self,
pmessage: *mut RPCOLEMESSAGE,
pstatus: *mut u32,
) -> Result<()>;
fn FreeBuffer(&self, pmessage: *mut RPCOLEMESSAGE) -> Result<()>;
fn GetDestCtx(
&self,
pdwdestcontext: *mut u32,
ppvdestcontext: *mut *mut c_void,
) -> Result<()>;
fn IsConnected(&self) -> Result<()>;
}
Required Methods§
fn GetBuffer( &self, pmessage: *mut RPCOLEMESSAGE, riid: *const GUID, ) -> Result<()>
fn SendReceive( &self, pmessage: *mut RPCOLEMESSAGE, pstatus: *mut u32, ) -> Result<()>
fn FreeBuffer(&self, pmessage: *mut RPCOLEMESSAGE) -> Result<()>
fn GetDestCtx( &self, pdwdestcontext: *mut u32, ppvdestcontext: *mut *mut c_void, ) -> Result<()>
fn IsConnected(&self) -> 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.