(&mut self, buf: &[u8])
| 45 | impl<T: Write + Send> Write for ProgressHandler<T> { |
| 46 | #[inline] |
| 47 | fn write(&mut self, buf: &[u8]) -> std::io::Result<usize> { |
| 48 | self.handle(|this| this.0.write(buf)) |
| 49 | } |
| 50 | |
| 51 | #[inline] |
| 52 | fn flush(&mut self) -> std::io::Result<()> { |
no test coverage detected