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§
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.