Add a cell to this row (builder style).
(mut self, cell: S)
| 209 | |
| 210 | /// Add a cell to this row (builder style). |
| 211 | pub fn add_cell<S: Into<String>>(mut self, cell: S) -> Self { |
| 212 | self.cells.push(cell.into()); |
| 213 | self |
| 214 | } |
| 215 | |
| 216 | /// Create a row from a vector of values. |
| 217 | /// |