| 25 | |
| 26 | #[derive(Debug, Clone)] |
| 27 | pub struct HttpResponse { |
| 28 | version: String, |
| 29 | status_code: u32, |
| 30 | reason: String, |
| 31 | headers: Vec<Header>, |
| 32 | pub body: String, |
| 33 | } |
| 34 | |
| 35 | /// https://datatracker.ietf.org/doc/html/rfc7230#section-3 |
| 36 | /// HTTP-message = start-line |
nothing calls this directly
no outgoing calls
no test coverage detected