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;
}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
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".