pub struct Output {
pub stdout: Vec<u8>,
pub stderr: Vec<u8>,
}
Expand description
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 Eq for Output
impl StructuralPartialEq for Output
Auto Trait Implementations§
impl Freeze for Output
impl RefUnwindSafe for Output
impl Send for Output
impl Sync for Output
impl Unpin for Output
impl UnwindSafe for Output
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more