pub struct ExecCommandFailure {
pub command: String,
pub exit_code: Option<i32>,
pub stdout: String,
pub stderr: String,
}Fields§
§command: String§exit_code: Option<i32>§stdout: String§stderr: StringAuto Trait Implementations§
impl Freeze for ExecCommandFailure
impl RefUnwindSafe for ExecCommandFailure
impl Send for ExecCommandFailure
impl Sync for ExecCommandFailure
impl Unpin for ExecCommandFailure
impl UnwindSafe for ExecCommandFailure
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