pub struct Query {
pub filter: Filter,
pub sort: Vec<SortField>,
pub cursor: Option<Cursor>,
pub limit: usize,
pub aggregation: Option<AggregationPlan>,
}Expand description
Complete deterministic query request.
Fields§
§filter: FilterFilter applied before sorting and aggregation.
sort: Vec<SortField>Requested sort fields; binary key ascending is always appended.
cursor: Option<Cursor>Optional continuation position.
limit: usizeMaximum rows in this page; must be nonzero.
aggregation: Option<AggregationPlan>Optional aggregation over the full filtered set.
Trait Implementations§
impl Eq for Query
impl StructuralPartialEq for Query
Auto Trait Implementations§
impl Freeze for Query
impl RefUnwindSafe for Query
impl Send for Query
impl Sync for Query
impl Unpin for Query
impl UnsafeUnpin for Query
impl UnwindSafe for Query
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