Struct checked_command::Output
[−]
[src]
pub struct Output {
pub stdout: Vec<u8>,
pub stderr: Vec<u8>,
}custom output type which, diferently to std::process::Output is not
closely coupled with ExitStatus (it does not have a status field)
Fields
stdout: Vec<u8>
the collected output of stdout as bytes
stderr: Vec<u8>
the collected output of stderr as bytes
Trait Implementations
impl Debug 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)1.0.0
Performs copy-assignment from source. Read more
impl Eq for Output[src]
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 !=.