(&mut self)
| 60 | |
| 61 | impl<T: AsyncWrite + AsyncLen + Send> AsyncLen for tokio::io::BufWriter<T> { |
| 62 | async fn segment_len(&mut self) -> io::Result<u64> { |
| 63 | self.get_mut().segment_len().await |
| 64 | } |
| 65 | } |
| 66 | |
| 67 | impl<T: AsyncRead + AsyncLen + Send> AsyncLen for tokio::io::BufReader<T> { |
no test coverage detected