(mut self, req: HttpRequest)
| 50 | |
| 51 | #[must_use] |
| 52 | pub fn http_request(mut self, req: HttpRequest) -> Self { |
| 53 | self.http_request = Some(req); |
| 54 | self |
| 55 | } |
| 56 | #[must_use] |
| 57 | pub fn http_response(mut self, resp: HttpResponse) -> Self { |
| 58 | self.http_response = Some(resp); |
no outgoing calls