(
&mut self,
_cx: &mut Context<'_>,
)
| 37 | >; |
| 38 | |
| 39 | fn poll_ready( |
| 40 | &mut self, |
| 41 | _cx: &mut Context<'_>, |
| 42 | ) -> Poll<Result<(), Self::Error>> { |
| 43 | Poll::Ready(Ok(())) |
| 44 | } |
| 45 | |
| 46 | fn call(&mut self, _req: Request<Full<Bytes>>) -> Self::Future { |
| 47 | let count = self |
nothing calls this directly
no outgoing calls
no test coverage detected