Check if this row has no cells.
(&self)
| 204 | |
| 205 | /// Check if this row has no cells. |
| 206 | pub fn is_empty(&self) -> bool { |
| 207 | self.cells.is_empty() |
| 208 | } |
| 209 | |
| 210 | /// Add a cell to this row (builder style). |
| 211 | pub fn add_cell<S: Into<String>>(mut self, cell: S) -> Self { |
no outgoing calls