Used to add a title row of a table
(mut self, title: T)
| 27 | impl TableStruct { |
| 28 | /// Used to add a title row of a table |
| 29 | pub fn title<T: Row>(mut self, title: T) -> Self { |
| 30 | self.title = Some(title.row()); |
| 31 | self |
| 32 | } |
| 33 | |
| 34 | /// Used to set border of a table |
| 35 | pub fn border(mut self, border: Border) -> Self { |