pub struct OrderSpec {
pub column: i32,
pub descending: bool,
}Expand description
One ORDER BY term the query offers the module.
Fields§
§column: i32Which column, or ROWID_COLUMN.
descending: boolWhether the term is descending.
Trait Implementations§
impl Copy for OrderSpec
impl Eq for OrderSpec
impl StructuralPartialEq for OrderSpec
Auto Trait Implementations§
impl Freeze for OrderSpec
impl RefUnwindSafe for OrderSpec
impl Send for OrderSpec
impl Sync for OrderSpec
impl Unpin for OrderSpec
impl UnsafeUnpin for OrderSpec
impl UnwindSafe for OrderSpec
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