pub trait OutputExt {
// Required methods
fn success(&self) -> bool;
fn error(&self) -> bool;
fn has_stdout(&self) -> bool;
fn has_signal(&self) -> bool;
fn signal(&self) -> Option<i32>;
fn interrupt(&self) -> bool;
fn kill(&self) -> bool;
}