(&self)
| 291 | (self.order_by).iColumn |
| 292 | } |
| 293 | pub fn direction(&self) -> OrderByDirection { |
| 294 | if (self.order_by).desc == 1 { |
| 295 | OrderByDirection::Descending |
| 296 | } else { |
| 297 | OrderByDirection::Ascending |
| 298 | } |
| 299 | } |
| 300 | } |
| 301 | |
| 302 | /// Possible errors to return in xBestIndex. |
nothing calls this directly
no outgoing calls
no test coverage detected