pub struct FDomainProxyChannel(/* private fields */);
Implementations§
Trait Implementations§
Source§impl Debug for FDomainProxyChannel
impl Debug for FDomainProxyChannel
Source§impl ProxyChannelBox<FDomainResourceDialect> for FDomainProxyChannel
impl ProxyChannelBox<FDomainResourceDialect> for FDomainProxyChannel
Source§fn recv_etc_from(
&self,
ctx: &mut Context<'_>,
buf: &mut MessageBuf,
) -> Poll<Result<(), Option<Error>>>
fn recv_etc_from( &self, ctx: &mut Context<'_>, buf: &mut MessageBuf, ) -> Poll<Result<(), Option<Error>>>
Receives a message on the channel and registers this
Channel
as
needing a read on receiving a io::std::ErrorKind::WouldBlock
.Source§fn write_etc(
&self,
bytes: &[u8],
handles: &mut [HandleInfo],
) -> Result<(), Option<Error>>
fn write_etc( &self, bytes: &[u8], handles: &mut [HandleInfo], ) -> Result<(), Option<Error>>
Write data to a Proxy channel
Source§fn as_channel(&self) -> &Channel
fn as_channel(&self) -> &Channel
Get a reference to the boxed channel.
Auto Trait Implementations§
impl !Freeze for FDomainProxyChannel
impl RefUnwindSafe for FDomainProxyChannel
impl Send for FDomainProxyChannel
impl Sync for FDomainProxyChannel
impl Unpin for FDomainProxyChannel
impl UnwindSafe for FDomainProxyChannel
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more