pub trait ResultExt<T, E: Error + Send + Sync + 'static + IntoResponse> {
    fn map_err_response<F>(self, f: F) -> Result<T, MapErrResponse<E, F>>
    where
        F: FnOnce(Response) -> Response
; }

Required methods

Implementations on Foreign Types

Implementors