(&mut self, table: Table)
| 41 | } |
| 42 | |
| 43 | pub fn write_table(&mut self, table: Table) -> Result<()> { |
| 44 | writeln!(self.writer, "{}", table)?; |
| 45 | Ok(()) |
| 46 | } |
| 47 | |
| 48 | pub fn writeln(&mut self, text: &str) -> Result<()> { |
| 49 | writeln!(self.writer, "{}", text)?; |