(self)
| 200 | R: Row, |
| 201 | { |
| 202 | fn table(self) -> TableStruct { |
| 203 | let rows = self.into_iter().map(Row::row).collect(); |
| 204 | |
| 205 | TableStruct { |
| 206 | title: Default::default(), |
| 207 | rows, |
| 208 | format: Default::default(), |
| 209 | style: Default::default(), |
| 210 | color_choice: ColorChoice::Always, |
| 211 | } |
| 212 | } |
| 213 | } |
| 214 | |
| 215 | impl Table for TableStruct { |