pub struct IndexOrderBy {
pub column: i32,
pub desc: bool,
}Expand description
A single ORDER BY term from the query.
Fields§
§column: i32Column index (0-based).
desc: booltrue if descending, false if ascending.
Trait Implementations§
Source§impl Clone for IndexOrderBy
impl Clone for IndexOrderBy
Source§fn clone(&self) -> IndexOrderBy
fn clone(&self) -> IndexOrderBy
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for IndexOrderBy
impl RefUnwindSafe for IndexOrderBy
impl Send for IndexOrderBy
impl Sync for IndexOrderBy
impl Unpin for IndexOrderBy
impl UnsafeUnpin for IndexOrderBy
impl UnwindSafe for IndexOrderBy
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