(self)
| 193 | |
| 194 | impl IntoResponse for ServiceRouteError { |
| 195 | fn into_response(self) -> AxumResponse { |
| 196 | service_error_response(self.status, self.message) |
| 197 | } |
| 198 | } |
| 199 | |
| 200 | pub fn service_error_response(status: StatusCode, message: &'static str) -> AxumResponse { |