Struct partiql_ast::ast::OrderByExpr
source · pub struct OrderByExpr {
pub sort_specs: Vec<AstNode<SortSpec>>,
}
Expand description
ORDER BY <sort_spec>…
Fields§
§sort_specs: Vec<AstNode<SortSpec>>
Trait Implementations§
source§impl Clone for OrderByExpr
impl Clone for OrderByExpr
source§fn clone(&self) -> OrderByExpr
fn clone(&self) -> OrderByExpr
Returns a copy 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 moresource§impl Debug for OrderByExpr
impl Debug for OrderByExpr
source§impl PartialEq<OrderByExpr> for OrderByExpr
impl PartialEq<OrderByExpr> for OrderByExpr
source§fn eq(&self, other: &OrderByExpr) -> bool
fn eq(&self, other: &OrderByExpr) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Visit for OrderByExpr
impl Visit for OrderByExpr
impl StructuralPartialEq for OrderByExpr
Auto Trait Implementations§
impl RefUnwindSafe for OrderByExpr
impl Send for OrderByExpr
impl Sync for OrderByExpr
impl Unpin for OrderByExpr
impl UnwindSafe for OrderByExpr
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