(&self, rows: Vec<Vec<CellStruct>>)
| 72 | } |
| 73 | |
| 74 | fn print_vertical_table(&self, rows: Vec<Vec<CellStruct>>) { |
| 75 | let table = rows.table().separator( |
| 76 | Separator::builder() |
| 77 | .column(Some(Default::default())) |
| 78 | .build(), |
| 79 | ); |
| 80 | self.print_table(table); |
| 81 | } |
| 82 | |
| 83 | fn print_horizontal_table(&self, rows: Vec<Vec<CellStruct>>, header: Vec<CellStruct>) { |
| 84 | let table = rows |
no test coverage detected