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>;
}Required Methods§
fn formattable(&self) -> CommandFormattable<'_>
fn output_checked_status(&mut self) -> Result<Output, InstallError>
fn spawn_with_cmd(self) -> Result<ChildWithCommand, InstallError>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".