Struct partiql_logical::OrderBy
source · pub struct OrderBy {
pub specs: Vec<SortSpec>,
}
Expand description
OrderBy
represents a sort operatyion, e.g. ORDER BY a DESC NULLS LAST
in SELECT a FROM t ORDER BY a DESC NULLS LAST
.
Fields§
§specs: Vec<SortSpec>
Trait Implementations§
source§impl PartialEq<OrderBy> for OrderBy
impl PartialEq<OrderBy> for OrderBy
impl Eq for OrderBy
impl StructuralEq for OrderBy
impl StructuralPartialEq for OrderBy
Auto Trait Implementations§
impl RefUnwindSafe for OrderBy
impl Send for OrderBy
impl Sync for OrderBy
impl Unpin 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