Struct std::process::Output 1.0.0
[−]
[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
impl Debug for Output
1.7.0[src]
Derived Implementations
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