pub struct Output { pub status: ExitStatus, pub stdout: Vec<u8>, pub stderr: Vec<u8>, }
The output of a finished process.
status: ExitStatus
The status (exit code) of the process.
stdout: Vec<u8>
The data that the process wrote to stdout.
stderr: Vec<u8>
The data that the process wrote to stderr.
impl PartialEq for Output
[src]
fn eq(&self, __arg_0: &Output) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &Output) -> bool
This method tests for !=
.
impl Eq for Output
[src]
impl Clone for Output
[src]
fn clone(&self) -> Output
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl Debug for Output
fn fmt(&self, fmt: &mut Formatter) -> Result
Formats the value using the given formatter.
© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/process/struct.Output.html