Struct std::old_io::process::ProcessOutputUnstable [-] [+] [src]

pub struct ProcessOutput {
    pub status: ProcessExit,
    pub output: Vec<u8>,
    pub error: Vec<u8>,
}

The output of a finished process.

Fields

status

The status (exit code) of the process.

output

The data that the process wrote to stdout.

error

The data that the process wrote to stderr.

Trait Implementations

Derived Implementations

impl Clone for ProcessOutput

fn clone(&self) -> ProcessOutput

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

impl Eq for ProcessOutput

impl PartialEq for ProcessOutput

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

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