pub struct StreamOutput {
pub status: ExitStatus,
pub stderr: Vec<u8>,
pub stderr_dropped: u64,
}Expand description
One streamed run’s outcome: everything except stdout, which the consumer already saw chunk by chunk.
Fields§
§status: ExitStatus§stderr: Vec<u8>§stderr_dropped: u64Stderr bytes discarded between the retained head and tail.
Auto Trait Implementations§
impl Freeze for StreamOutput
impl RefUnwindSafe for StreamOutput
impl Send for StreamOutput
impl Sync for StreamOutput
impl Unpin for StreamOutput
impl UnsafeUnpin for StreamOutput
impl UnwindSafe for StreamOutput
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