pub trait ThreadUnwrap<T> {
// Required methods
fn join_fail<S: Into<String>>(self, explanation: impl FnOnce() -> S) -> T;
fn join_res(self) -> Res<T>;
}Required Methods§
fn join_fail<S: Into<String>>(self, explanation: impl FnOnce() -> S) -> T
fn join_res(self) -> Res<T>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.