Method for setting the CSV writer header status
(mut self, header: bool)
| 719 | |
| 720 | /// Method for setting the CSV writer header status |
| 721 | pub fn with_header(mut self, header: bool) -> Self { |
| 722 | self.header = header; |
| 723 | self |
| 724 | } |
| 725 | } |
| 726 | |
| 727 | impl BatchSerializer for CsvSerializer { |
no outgoing calls
no test coverage detected