pub struct CmdOutput {
pub stdout: String,
pub stderr: String,
pub exit_code: i32,
pub pid: Option<u32>,
}Fields§
§stdout: String§stderr: String§exit_code: i32§pid: Option<u32>Trait Implementations§
impl Eq for CmdOutput
impl StructuralPartialEq for CmdOutput
Auto Trait Implementations§
impl Freeze for CmdOutput
impl RefUnwindSafe for CmdOutput
impl Send for CmdOutput
impl Sync for CmdOutput
impl Unpin for CmdOutput
impl UnsafeUnpin for CmdOutput
impl UnwindSafe for CmdOutput
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