pub trait IntoAnyhow<T> {
// Required method
fn into_anyhow(self) -> Result<T>;
}Expand description
Helper functions for converting errors
Required Methods§
fn into_anyhow(self) -> Result<T>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".