pub trait IntoHandlerError {
// Required method
fn into_handler_error(self) -> Error;
}Expand description
Trait for converting errors into handler errors
Required Methods§
Sourcefn into_handler_error(self) -> Error
fn into_handler_error(self) -> Error
Convert into a handler error
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".