pub trait CommandExtCheck {
type Error;
// Required method
fn check(&mut self) -> Result<Output, Self::Error>;
}
Expand description
Extension trait for std::process::Command
to check the output of a command
pub trait CommandExtCheck {
type Error;
// Required method
fn check(&mut self) -> Result<Output, Self::Error>;
}
Extension trait for std::process::Command
to check the output of a command