Set the batch size (the number of rows to load at one time)
(mut self, batch_size: usize)
| 159 | |
| 160 | /// Set the batch size (the number of rows to load at one time) |
| 161 | pub fn with_batch_size(mut self, batch_size: usize) -> Self { |
| 162 | self.batch_size = batch_size; |
| 163 | self |
| 164 | } |
| 165 | |
| 166 | /// Specify whether the file has a header (only applicable for [`StreamEncoding::Csv`]) |
| 167 | pub fn with_header(mut self, header: bool) -> Self { |
no outgoing calls
no test coverage detected