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