pub struct CommandRun {
pub status: ExitStatus,
pub stdout: String,
pub stderr: String,
}Expand description
The result of a command execution if the child process managed to execute
Fields§
§status: ExitStatus§stdout: String§stderr: StringAuto Trait Implementations§
impl Freeze for CommandRun
impl RefUnwindSafe for CommandRun
impl Send for CommandRun
impl Sync for CommandRun
impl Unpin for CommandRun
impl UnwindSafe for CommandRun
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