pub trait TeeOutputExt {
// Required method
fn tee_output(self) -> Result<Output>;
}Expand description
Display command output and return it for examination.
Required Methods§
Sourcefn tee_output(self) -> Result<Output>
fn tee_output(self) -> Result<Output>
Display the output of a test command on stdout and stderr, then return
the Output object for further processing.