Struct checked_command::Output [] [src]

pub struct Output {
    pub stdout: Vec<u8>,
    pub stderr: Vec<u8>,
}

custom output type which, diferently to std::process::Output is not closely coupled with ExitStatus (it does not have a status field)

Fields

the collected output of stdout as bytes

the collected output of stderr as bytes

Trait Implementations

impl Debug for Output
[src]

Formats the value using the given formatter.

impl Clone for Output
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Eq for Output
[src]

impl PartialEq for Output
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl From<StdOutput> for Output
[src]

Performs the conversion.