pub struct OrderBy {
pub expr: Expr,
pub desc: bool,
pub nulls: Option<NullsOrder>,
}Expand description
ORDER BY clause for sorting query results.
Fields§
§expr: ExprThe expression to sort by.
desc: boolWhether to sort descending (true) or ascending (false).
nulls: Option<NullsOrder>Optional NULLS FIRST / NULLS LAST specification.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for OrderBy
impl RefUnwindSafe for OrderBy
impl Send for OrderBy
impl Sync for OrderBy
impl Unpin for OrderBy
impl UnsafeUnpin for OrderBy
impl UnwindSafe for OrderBy
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