Trait IAsyncRpcChannelBuffer_Impl
pub trait IAsyncRpcChannelBuffer_Impl: IRpcChannelBuffer2_Impl {
// Required methods
fn Send(
&self,
pmsg: *mut RPCOLEMESSAGE,
psync: Ref<'_, 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: Ref<'_, 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<()>
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.