pub struct ExecFailed {
pub exit_code: Option<i32>,
pub stdout: String,
pub stderr: String,
}Expand description
Fields from a failed external command execution.
Fields§
§exit_code: Option<i32>§stdout: String§stderr: StringTrait Implementations§
Auto Trait Implementations§
impl Freeze for ExecFailed
impl RefUnwindSafe for ExecFailed
impl Send for ExecFailed
impl Sync for ExecFailed
impl Unpin for ExecFailed
impl UnsafeUnpin for ExecFailed
impl UnwindSafe for ExecFailed
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