Set the reader's column projection
(mut self, projection: Vec<usize>)
| 1211 | |
| 1212 | /// Set the reader's column projection |
| 1213 | pub fn with_projection(mut self, projection: Vec<usize>) -> Self { |
| 1214 | self.projection = Some(projection); |
| 1215 | self |
| 1216 | } |
| 1217 | |
| 1218 | /// Whether to allow truncated rows when parsing. |
| 1219 | /// |
no outgoing calls