Prints current table to `stdout`
(&self)
| 65 | |
| 66 | /// Prints current table to `stdout` |
| 67 | pub(crate) fn print_stdout(&self) -> Result<()> { |
| 68 | self.print_writer(BufferWriter::stdout(self.color_choice)) |
| 69 | } |
| 70 | |
| 71 | /// Prints current table to `stderr` |
| 72 | pub(crate) fn print_stderr(&self) -> Result<()> { |
no test coverage detected