pub struct OrderExpr { /* private fields */ }Expand description
ORDER BY expression.
Implementations§
Source§impl OrderExpr
impl OrderExpr
Sourcepub fn nulls_first(self) -> Self
pub fn nulls_first(self) -> Self
Set NULLS FIRST.
Sourcepub fn nulls_last(self) -> Self
pub fn nulls_last(self) -> Self
Set NULLS LAST.
Sourcepub fn into_fragment(self) -> SqlFragment
pub fn into_fragment(self) -> SqlFragment
Convert to SQL fragment.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for OrderExpr
impl RefUnwindSafe for OrderExpr
impl Send for OrderExpr
impl Sync for OrderExpr
impl Unpin for OrderExpr
impl UnwindSafe for OrderExpr
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