Output in std::process - Rust (original) (raw)
Struct Output
1.0.0 · Source
pub struct Output {
pub status: ExitStatus,
pub stdout: Vec<u8>,
pub stderr: Vec<u8>,
}
Expand description
The status (exit code) of the process.
The data that the process wrote to stdout.
The data that the process wrote to stderr.
Tests for self
and other
values to be equal, and is used by ==
.
Tests for !=
. The default implementation is almost always sufficient, and should not be overridden without very good reason.