(
values: impl Iterator<Item = &'a str>,
interner: &mut LocalCsvInterner,
)
| 1030 | } |
| 1031 | } |
| 1032 | |
| 1033 | pub struct CSVQueryRows<'a> { |
| 1034 | result: &'a CSVQueryResult, |
| 1035 | index: usize, |
| 1036 | } |
| 1037 | |
| 1038 | impl<'a> Iterator for CSVQueryRows<'a> { |
| 1039 | type Item = CSVQueryRow<'a>; |
| 1040 | |
| 1041 | fn next(&mut self) -> Option<Self::Item> { |
| 1042 | let row = self.result.row(self.index)?; |
| 1043 | self.index += 1; |
| 1044 | Some(row) |
| 1045 | } |
| 1046 | } |
no test coverage detected