(_request: Request<Body>)
| 130 | } |
| 131 | |
| 132 | async fn http_response_fail(_request: Request<Body>) -> Result<Response<Body>> { |
| 133 | Err(anyhow::anyhow!("error creating response")) |
| 134 | } |
| 135 | |
| 136 | async fn http_body_fail(_request: Request<Body>) -> Result<Response<Body>> { |
| 137 | let body = StreamBody::new(once_future(async move { |