Struct std::process::Output 1.0.0
[−]
[src]
The output of a finished process.
This is returned in a Result by either the output
method of a
Command
, or the wait_with_output
method of a Child
process.
Fields
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.
Trait Implementations
impl PartialEq for Output
[src]
[+]
impl PartialEq for Output
impl Eq for Output
[src]
impl Eq for Output
impl Clone for Output
[src]
[+]
impl Clone for Output
impl Debug for Output
1.7.0[src]
[+]
impl Debug for Output
1.7.0
[src]