pub enum Ended {
Exited,
TimedOut,
Halted,
}Expand description
Why waiting stopped.
Variants§
Exited
The child exited on its own.
TimedOut
The child outlived timeout_sec and was killed.
Halted
A Ground Stop was engaged and the child was killed.
Trait Implementations§
impl Copy for Ended
impl Eq for Ended
impl StructuralPartialEq for Ended
Auto Trait Implementations§
impl Freeze for Ended
impl RefUnwindSafe for Ended
impl Send for Ended
impl Sync for Ended
impl Unpin for Ended
impl UnsafeUnpin for Ended
impl UnwindSafe for Ended
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