pub struct WithClause {
pub items: Vec<ReturnItem>,
pub where_: Option<Expr>,
pub order_by: Vec<SortItem>,
pub limit: Option<i64>,
pub skip: Option<i64>,
}Fields§
§items: Vec<ReturnItem>§where_: Option<Expr>§order_by: Vec<SortItem>§limit: Option<i64>§skip: Option<i64>Trait Implementations§
Source§impl Clone for WithClause
impl Clone for WithClause
Source§fn clone(&self) -> WithClause
fn clone(&self) -> WithClause
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 moreSource§impl Debug for WithClause
impl Debug for WithClause
Source§impl PartialEq for WithClause
impl PartialEq for WithClause
impl StructuralPartialEq for WithClause
Auto Trait Implementations§
impl Freeze for WithClause
impl RefUnwindSafe for WithClause
impl Send for WithClause
impl Sync for WithClause
impl Unpin for WithClause
impl UnsafeUnpin for WithClause
impl UnwindSafe for WithClause
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