1/// Fields from a failed external command execution. 2#[derive(Debug)] 3pub struct ExecFailed { 4 pub exit_code: Option<i32>, 5 pub stdout: String, 6 pub stderr: String, 7}