pub struct BoundOrderTerm {
pub expr: BoundExpr,
pub order: SortOrder,
pub nulls: NullOrder,
pub collation: Collation,
}Expand description
One ORDER BY term, bound.
Fields§
§expr: BoundExprThe expression to sort by.
order: SortOrderThe direction.
nulls: NullOrderWhere NULLs sort.
collation: CollationThe collation the sort compares with.
Trait Implementations§
Source§impl Clone for BoundOrderTerm
impl Clone for BoundOrderTerm
Source§impl Debug for BoundOrderTerm
impl Debug for BoundOrderTerm
Source§impl PartialEq for BoundOrderTerm
impl PartialEq for BoundOrderTerm
impl StructuralPartialEq for BoundOrderTerm
Auto Trait Implementations§
impl !Send for BoundOrderTerm
impl !Sync for BoundOrderTerm
impl Freeze for BoundOrderTerm
impl RefUnwindSafe for BoundOrderTerm
impl Unpin for BoundOrderTerm
impl UnsafeUnpin for BoundOrderTerm
impl UnwindSafe for BoundOrderTerm
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