pub struct CapturedChild {
pub child: Child,
pub output_capture: OutputCaptureHandles,
}Expand description
Bundles a spawned child process with its asynchronous output capture handles.
Fields§
§child: ChildSpawned child process.
output_capture: OutputCaptureHandlesBackground tasks that sanitize and persist captured output streams.
Auto Trait Implementations§
impl Freeze for CapturedChild
impl !RefUnwindSafe for CapturedChild
impl Send for CapturedChild
impl Sync for CapturedChild
impl Unpin for CapturedChild
impl UnsafeUnpin for CapturedChild
impl !UnwindSafe for CapturedChild
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