pub struct StdCommandProcess {
pub stdin: Box<dyn Write>,
pub stdout: Box<dyn Read>,
pub pid: u32,
pub end_rx: Receiver<ProcessEnd>,
pub end_handler: JoinHandle<()>,
}Fields§
§stdin: Box<dyn Write>§stdout: Box<dyn Read>§pid: u32§end_rx: Receiver<ProcessEnd>§end_handler: JoinHandle<()>Trait Implementations§
Auto Trait Implementations§
impl Freeze for StdCommandProcess
impl !RefUnwindSafe for StdCommandProcess
impl !Send for StdCommandProcess
impl !Sync for StdCommandProcess
impl Unpin for StdCommandProcess
impl !UnwindSafe for StdCommandProcess
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