pub struct CaptureAllResult {
pub stdout: Vec<u8>,
pub stderr: Vec<u8>,
pub status: ExitStatus,
}Expand description
Result from capturing both stdout and stderr.
Fields§
§stdout: Vec<u8>§stderr: Vec<u8>§status: ExitStatusTrait Implementations§
Auto Trait Implementations§
impl Freeze for CaptureAllResult
impl RefUnwindSafe for CaptureAllResult
impl Send for CaptureAllResult
impl Sync for CaptureAllResult
impl Unpin for CaptureAllResult
impl UnwindSafe for CaptureAllResult
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