(&mut self)
| 568 | } |
| 569 | |
| 570 | fn end_row(&mut self) { |
| 571 | if !self.current_row.is_empty() { |
| 572 | self.rows.push(std::mem::take(&mut self.current_row)); |
| 573 | } |
| 574 | self.is_header = false; |
| 575 | } |
| 576 | |
| 577 | fn start_cell(&mut self) { |
| 578 | self.current_row.push(Vec::new()); |