pub trait CommandExt {
// Required methods
fn formattable(&self) -> CommandFormattable<'_>;
fn output_checked_status(&mut self) -> Result<Output, InstallError>;
fn spawn_with_cmd(self) -> Result<ChildWithCommand, InstallError>;
}pub trait CommandExt {
// Required methods
fn formattable(&self) -> CommandFormattable<'_>;
fn output_checked_status(&mut self) -> Result<Output, InstallError>;
fn spawn_with_cmd(self) -> Result<ChildWithCommand, InstallError>;
}