pub struct CapturedStdoutAndErr {
pub stdout: Vec<u8>,
pub stderr: Vec<u8>,
}
Expand description
The captured stdout and stderr.
Fields§
§stdout: Vec<u8>
§stderr: Vec<u8>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CapturedStdoutAndErr
impl RefUnwindSafe for CapturedStdoutAndErr
impl Send for CapturedStdoutAndErr
impl Sync for CapturedStdoutAndErr
impl Unpin for CapturedStdoutAndErr
impl UnwindSafe for CapturedStdoutAndErr
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