Struct std::io::process::ProcessOutputExperimental
[-]
[+]
[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. |