pub struct GroupedQueryOutput {
pub entity: String,
pub rows: Vec<GroupedRow>,
pub row_count: u32,
pub next_cursor: Option<String>,
}Expand description
One bounded grouped-query page produced by the engine-neutral query lane.
Fields§
§entity: StringAccepted entity name used for the read.
rows: Vec<GroupedRow>Ordered grouped rows. Key and aggregate value order follows declaration order.
row_count: u32Number of rows returned in this page.
next_cursor: Option<String>Opaque continuation cursor for the next page, when one exists.
Trait Implementations§
Source§impl CandidType for GroupedQueryOutput
impl CandidType for GroupedQueryOutput
Source§impl Clone for GroupedQueryOutput
impl Clone for GroupedQueryOutput
Source§fn clone(&self) -> GroupedQueryOutput
fn clone(&self) -> GroupedQueryOutput
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GroupedQueryOutput
impl Debug for GroupedQueryOutput
Source§impl<'de> Deserialize<'de> for GroupedQueryOutput
impl<'de> Deserialize<'de> for GroupedQueryOutput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for GroupedQueryOutput
Source§impl PartialEq for GroupedQueryOutput
impl PartialEq for GroupedQueryOutput
impl StructuralPartialEq for GroupedQueryOutput
Auto Trait Implementations§
impl Freeze for GroupedQueryOutput
impl RefUnwindSafe for GroupedQueryOutput
impl Send for GroupedQueryOutput
impl Sync for GroupedQueryOutput
impl Unpin for GroupedQueryOutput
impl UnsafeUnpin for GroupedQueryOutput
impl UnwindSafe for GroupedQueryOutput
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