pub enum TerminationReason {
Normal,
Aborted,
Panicked(Box<dyn Any + Send>),
}Expand description
Reasons for a child to have terminated.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TerminationReason
impl !RefUnwindSafe for TerminationReason
impl Send for TerminationReason
impl !Sync for TerminationReason
impl Unpin for TerminationReason
impl !UnwindSafe for TerminationReason
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