MCPcopy Create free account
hub / github.com/asg017/sqlite-loadable-rs / direction

Method direction

src/table.rs:293–299  ·  view source on GitHub ↗
(&self)

Source from the content-addressed store, hash-verified

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.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected