pub struct SpawnStatus {
pub status: ExitStatus,
pub stdin: Option<Stdio>,
pub stdout: Option<Stdio>,
pub stderr: Option<Stdio>,
}Expand description
The process spawn exit status.
Wrapper containing the standard exit status, stdin, stdout and stderr of a spawned command.
Fields§
§status: ExitStatus§stdin: Option<Stdio>§stdout: Option<Stdio>§stderr: Option<Stdio>Trait Implementations§
Auto Trait Implementations§
impl Freeze for SpawnStatus
impl RefUnwindSafe for SpawnStatus
impl Send for SpawnStatus
impl Sync for SpawnStatus
impl Unpin for SpawnStatus
impl UnwindSafe for SpawnStatus
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