pub trait IntoErr<T> {
// Required method
fn into_err(self) -> Result<T>;
}Expand description
Converts foreign error results into the crate’s structured Result type.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".