pub struct ReturnClause {
pub distinct: bool,
pub items: Vec<ReturnItem>,
pub order_by: Option<OrderByClause>,
pub skip: Option<Expression>,
pub limit: Option<Expression>,
pub span: Option<SourceSpan>,
}Expand description
A RETURN clause.
Fields§
§distinct: boolWhether to return DISTINCT results.
items: Vec<ReturnItem>Items to return.
order_by: Option<OrderByClause>Optional ORDER BY.
skip: Option<Expression>Optional SKIP.
limit: Option<Expression>Optional LIMIT.
span: Option<SourceSpan>Source span.
Trait Implementations§
Source§impl Clone for ReturnClause
impl Clone for ReturnClause
Source§fn clone(&self) -> ReturnClause
fn clone(&self) -> ReturnClause
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for ReturnClause
impl RefUnwindSafe for ReturnClause
impl Send for ReturnClause
impl Sync for ReturnClause
impl Unpin for ReturnClause
impl UnwindSafe for ReturnClause
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