pub struct ChildProcess {
pub child: Child,
pub stdin_sender: Sender<ChildStdIn>,
pub line_sender: Sender<ChildStdIO>,
pub line_receiver: Receiver<ChildStdIO>,
pub aux_chan_host_endpoint: Option<HostEndpoint>,
}Fields§
§child: Child§stdin_sender: Sender<ChildStdIn>§line_sender: Sender<ChildStdIO>§line_receiver: Receiver<ChildStdIO>§aux_chan_host_endpoint: Option<HostEndpoint>Implementations§
Auto Trait Implementations§
impl Freeze for ChildProcess
impl RefUnwindSafe for ChildProcess
impl Send for ChildProcess
impl !Sync for ChildProcess
impl Unpin for ChildProcess
impl UnwindSafe for ChildProcess
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