#[repr(C)]pub struct OrderByInfo {
pub column_index: u32,
pub desc: bool,
}Expand description
Describes an ORDER BY clause in a query involving a virtual table. Passed along with the constraints to xBestIndex.
Fields§
§column_index: u32The index of the column referenced in the ORDER BY clause.
desc: boolWhether or not the clause is in descending order.
Trait Implementations§
Source§impl Clone for OrderByInfo
impl Clone for OrderByInfo
Source§fn clone(&self) -> OrderByInfo
fn clone(&self) -> OrderByInfo
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for OrderByInfo
Auto Trait Implementations§
impl Freeze for OrderByInfo
impl RefUnwindSafe for OrderByInfo
impl Send for OrderByInfo
impl Sync for OrderByInfo
impl Unpin for OrderByInfo
impl UnsafeUnpin for OrderByInfo
impl UnwindSafe for OrderByInfo
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more