pub trait IntoResponseError {
    type Err: Display + Send + 'static;
    fn into_response_error(self) -> Result<Response, Self::Err>;
}

Associated Types

Required methods

Implementors