(mut self, logic: CsvLogic, col: &str, needle: &str)
| 695 | |
| 696 | pub fn order_by_num_asc(self, col: &str) -> Self { |
| 697 | self.order_by_num(col, CsvOrder::Asc) |
| 698 | } |
| 699 | |
| 700 | pub fn order_by_num_desc(self, col: &str) -> Self { |
| 701 | self.order_by_num(col, CsvOrder::Desc) |
| 702 | } |
| 703 | |
| 704 | pub fn limit(mut self, limit: usize) -> Self { |
| 705 | self.limit = Some(limit); |
| 706 | self |
| 707 | } |
| 708 | |
| 709 | pub fn run(&self) -> CSVQueryResult { |
no test coverage detected