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
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".
Implementations on Foreign Types§
Source§impl CommandExtCheck for Command
impl CommandExtCheck for Command
Implementors§
Source§impl<'a> CommandExtCheck for CommandLog<'a>
Available on crate feature check only.
impl<'a> CommandExtCheck for CommandLog<'a>
Available on crate feature
check only.type Error = CommandExtError
Source§impl<'a> CommandExtCheck for CommandPrint<'a>
Available on crate feature check only.
impl<'a> CommandExtCheck for CommandPrint<'a>
Available on crate feature
check only.type Error = CommandExtError
Source§impl<'a> CommandExtCheck for CommandTrace<'a>
Available on crate feature check only.
impl<'a> CommandExtCheck for CommandTrace<'a>
Available on crate feature
check only.