Struct std::process::Output [] [src]

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

The output of a finished process.

Fields

status

The status (exit code) of the process.

stdout

The data that the process wrote to stdout.

stderr

The data that the process wrote to stderr.

Trait Implementations

Derived Implementations

impl Clone for Output

fn clone(&self) -> Output

fn clone_from(&mut self, source: &Self)

impl Eq for Output

impl PartialEq for Output

fn eq(&self, __arg_0: &Output) -> bool

fn ne(&self, __arg_0: &Output) -> bool