pub trait ResumeUnwind {
type Output;
// Required method
fn resume_unwind(self) -> Self::Output;
}Expand description
Trait to resume unwind from a JoinError.
Required Associated Types§
Required Methods§
Sourcefn resume_unwind(self) -> Self::Output
fn resume_unwind(self) -> Self::Output
Resume the panic if the task panicked.