pub trait OutputExt {
// Required methods
fn stdout_str(&self) -> &str;
fn stderr_str(&self) -> &str;
}Expand description
Extension methods for std::process::Output.
Required Methods§
Sourcefn stdout_str(&self) -> &str
fn stdout_str(&self) -> &str
Get standard output as a str.
Sourcefn stderr_str(&self) -> &str
fn stderr_str(&self) -> &str
Get standard error as a str.