pub trait MakeAxumError<E> {
// Required method
fn make_axum_error(self, result: Result<Response, E>) -> Response;
}Required Methods§
fn make_axum_error(self, result: Result<Response, E>) -> Response
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".