pub struct ChildCleanup {
pub status: Option<ExitStatus>,
pub errors: Vec<String>,
}Expand description
Outcome of a bounded child cleanup attempt.
Fields§
§status: Option<ExitStatus>Reaped child status, when it became available within the cleanup budget.
errors: Vec<String>Cleanup diagnostics that should be attached to the caller’s error.
Auto Trait Implementations§
impl Freeze for ChildCleanup
impl RefUnwindSafe for ChildCleanup
impl Send for ChildCleanup
impl Sync for ChildCleanup
impl Unpin for ChildCleanup
impl UnsafeUnpin for ChildCleanup
impl UnwindSafe for ChildCleanup
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