pub trait UserErrorExt {
// Required method
fn to_user_error(self) -> UserError;
}Expand description
Extension trait for user errors
Required Methods§
fn to_user_error(self) -> UserError
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".