(self)
| 344 | |
| 345 | impl Incoming { |
| 346 | fn into_http_body(self) -> IncomingBody { |
| 347 | IncomingBody::new(self.body, self.size_hint) |
| 348 | } |
| 349 | async fn send(self, outgoing_body: WasiOutgoingBody) -> Result<(), Error> { |
| 350 | let in_body = self.body; |
| 351 | let in_stream = |
no outgoing calls
no test coverage detected