(&mut self, buf: &[u8])
| 712 | |
| 713 | impl Write for DirectoryFile { |
| 714 | fn write(&mut self, buf: &[u8]) -> io::Result<usize> { |
| 715 | self.file.write(buf) |
| 716 | } |
| 717 | |
| 718 | fn flush(&mut self) -> io::Result<()> { |
| 719 | self.file.flush() |
no outgoing calls
no test coverage detected