pub struct CmdOutput {
pub stdout: Vec<u8>,
pub stderr: Vec<u8>,
pub status_code: Option<i32>,
}
Fields§
§stdout: Vec<u8>
§stderr: Vec<u8>
§status_code: Option<i32>
Auto Trait Implementations§
impl Freeze for CmdOutput
impl RefUnwindSafe for CmdOutput
impl Send for CmdOutput
impl Sync for CmdOutput
impl Unpin 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