trait UnwrapOrExit<T> {
// Required method
fn unwrap_or_exit(self, ctx: &str) -> T;
}Required Methods§
fn unwrap_or_exit(self, ctx: &str) -> T
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".