pub struct ChildInfo {
pub pid: Pid,
pub stdin: Option<ChildStdin>,
/* private fields */
}
Expand description
A handle to a child process that was spawned with Muxer
.
Fields§
§pid: Pid
§stdin: Option<ChildStdin>
Implementations§
Source§impl ChildInfo
impl ChildInfo
pub fn program(&self) -> &Path
pub fn exit_status(&self) -> Option<ExitStatus>
Auto Trait Implementations§
impl Freeze for ChildInfo
impl !RefUnwindSafe for ChildInfo
impl !Send for ChildInfo
impl !Sync for ChildInfo
impl Unpin for ChildInfo
impl !UnwindSafe for ChildInfo
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