Skip to main content

ResumeUnwind

Trait ResumeUnwind 

Source
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§

Source

type Output

The output type.

Required Methods§

Source

fn resume_unwind(self) -> Self::Output

Resume the panic if the task panicked.

Implementations on Foreign Types§

Source§

impl<T> ResumeUnwind for Result<T, JoinError>

Implementors§