Use descending sort order
(&mut self)
| 198 | |
| 199 | /// Use descending sort order |
| 200 | pub fn desc(&mut self) -> &mut Self { |
| 201 | self.sort_asc = false; |
| 202 | self |
| 203 | } |
| 204 | |
| 205 | /// Limit result set to only first N rows in ascending order of the order by column |
| 206 | pub fn first(&mut self, num_rows: u64) -> &mut Self { |
no outgoing calls