pub trait TeeOutputExt {
    // Required method
    fn tee_output(self) -> Result<Output>;
}
Expand description

Display command output and return it for examination.

Required Methods§

source

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.

Implementations on Foreign Types§

source§

impl TeeOutputExt for &mut Command

source§

impl TeeOutputExt for Result<Output>

Implementors§