pub struct ResolvedReturn {
pub distinct: bool,
pub items: Vec<ResolvedProjection>,
pub include_existing: bool,
pub order: Vec<ResolvedSortItem>,
pub skip: Option<ResolvedExpr>,
pub limit: Option<ResolvedExpr>,
}Fields§
§distinct: bool§items: Vec<ResolvedProjection>§include_existing: bool§order: Vec<ResolvedSortItem>§skip: Option<ResolvedExpr>§limit: Option<ResolvedExpr>Trait Implementations§
Source§impl Clone for ResolvedReturn
impl Clone for ResolvedReturn
Source§fn clone(&self) -> ResolvedReturn
fn clone(&self) -> ResolvedReturn
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 ResolvedReturn
impl RefUnwindSafe for ResolvedReturn
impl Send for ResolvedReturn
impl Sync for ResolvedReturn
impl Unpin for ResolvedReturn
impl UnsafeUnpin for ResolvedReturn
impl UnwindSafe for ResolvedReturn
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