pub trait AnyhowResultExt<T> {
// Required methods
unsafe fn now_unchecked_release(self) -> T;
fn now_checked(self) -> Option<T>;
}Required Methods§
unsafe fn now_unchecked_release(self) -> T
fn now_checked(self) -> Option<T>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".