pub struct PipeTransportReceiver<R>{ /* private fields */ }Expand description
Receive-only part of PipeTransport
This struct only contains stdout and the message channel, allowing it to run the receive loop without needing stdin. This solves the deadlock issue by separating send and receive.
Implementations§
Source§impl<R> PipeTransportReceiver<R>
impl<R> PipeTransportReceiver<R>
Auto Trait Implementations§
impl<R> Freeze for PipeTransportReceiver<R>where
R: Freeze,
impl<R> RefUnwindSafe for PipeTransportReceiver<R>where
R: RefUnwindSafe,
impl<R> Send for PipeTransportReceiver<R>
impl<R> Sync for PipeTransportReceiver<R>where
R: Sync,
impl<R> Unpin for PipeTransportReceiver<R>
impl<R> UnwindSafe for PipeTransportReceiver<R>where
R: UnwindSafe,
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