pub struct SelectStatement {
pub with: Option<WithClause>,
pub body: SelectBody,
pub order_by: Vec<OrderingTerm>,
pub limit: Option<LimitClause>,
}Expand description
A full SELECT statement, including WITH, ORDER BY, and LIMIT.
Fields§
§with: Option<WithClause>Optional common table expressions.
body: SelectBodyThe SELECT body (core + compound operators).
order_by: Vec<OrderingTerm>ORDER BY clause.
limit: Option<LimitClause>LIMIT clause.
Trait Implementations§
Source§impl Clone for SelectStatement
impl Clone for SelectStatement
Source§fn clone(&self) -> SelectStatement
fn clone(&self) -> SelectStatement
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SelectStatement
impl Debug for SelectStatement
Source§impl Display for SelectStatement
impl Display for SelectStatement
Source§impl PartialEq for SelectStatement
impl PartialEq for SelectStatement
impl StructuralPartialEq for SelectStatement
Auto Trait Implementations§
impl !Freeze for SelectStatement
impl RefUnwindSafe for SelectStatement
impl Send for SelectStatement
impl Sync for SelectStatement
impl Unpin for SelectStatement
impl UnsafeUnpin for SelectStatement
impl UnwindSafe for SelectStatement
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