pub trait JoinError {
    // Required method
    fn is_panic(&self) -> bool;
}
Expand description

Generic utilities for a JoinError

Required Methods§

source

fn is_panic(&self) -> bool

Check if the spawned task exited because of a panic

Implementations on Foreign Types§

source§

impl JoinError for JoinError

source§

fn is_panic(&self) -> bool

Implementors§