(&mut self, buf: &[u8])
| 205 | |
| 206 | impl Write for MemoryWriter { |
| 207 | fn write(&mut self, buf: &[u8]) -> io::Result<usize> { |
| 208 | self.buffer.write(buf) |
| 209 | } |
| 210 | |
| 211 | fn flush(&mut self) -> io::Result<()> { |
| 212 | // Flush writes the content to the in-memory storage |
no outgoing calls
no test coverage detected