Trait pyo3_asyncio::generic::JoinError
source · pub trait JoinError {
// Required methods
fn is_panic(&self) -> bool;
fn into_panic(self) -> Box<dyn Any + Send + 'static>;
}
Expand description
Generic utilities for a JoinError
Required Methods§
sourcefn into_panic(self) -> Box<dyn Any + Send + 'static>
fn into_panic(self) -> Box<dyn Any + Send + 'static>
Get the panic object associated with the error. Panics if is_panic
is not true.