(&mut self, line: &str)
| 2214 | } |
| 2215 | |
| 2216 | async fn write_line(&mut self, line: &str) -> std::io::Result<()> { |
| 2217 | self.writer.write_all(line.as_bytes()).await |
| 2218 | } |
| 2219 | |
| 2220 | async fn flush(&mut self) -> std::io::Result<()> { |
| 2221 | self.writer.flush().await |
no outgoing calls
no test coverage detected