(&mut self, value: &str)
| 1020 | select_cols: self.select_cols.as_deref(), |
| 1021 | }) |
| 1022 | } |
| 1023 | |
| 1024 | #[inline] |
| 1025 | pub fn iter(&self) -> CSVQueryRows<'_> { |
| 1026 | CSVQueryRows { |
| 1027 | result: self, |
| 1028 | index: 0, |
| 1029 | } |
| 1030 | } |
| 1031 | } |
| 1032 |
no test coverage detected