(self, col: &str)
| 624 | } |
| 625 | |
| 626 | pub fn where_starts_with(self, col: &str, prefix: &str) -> Self { |
| 627 | self.add_starts_with(CsvLogic::And, col, prefix) |
| 628 | } |
| 629 | |
| 630 | pub fn where_in(self, col: &str, values: &[&str]) -> Self { |
| 631 | self.add_in(CsvLogic::And, col, values) |
nothing calls this directly
no test coverage detected