pub struct StructuredAggregationQuery {
pub aggregations: Option<Vec<Aggregation>>,
pub structured_query: Option<StructuredQuery>,
}Expand description
Firestore query for running an aggregation over a StructuredQuery.
This type is not used in any activity, and only used as part of another schema.
Fields§
§aggregations: Option<Vec<Aggregation>>Optional. Series of aggregations to apply over the results of the structured_query. Requires: * A minimum of one and maximum of five aggregations per query.
structured_query: Option<StructuredQuery>Nested structured query.
Trait Implementations§
Source§impl Clone for StructuredAggregationQuery
impl Clone for StructuredAggregationQuery
Source§fn clone(&self) -> StructuredAggregationQuery
fn clone(&self) -> StructuredAggregationQuery
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 StructuredAggregationQuery
impl Debug for StructuredAggregationQuery
Source§impl Default for StructuredAggregationQuery
impl Default for StructuredAggregationQuery
Source§fn default() -> StructuredAggregationQuery
fn default() -> StructuredAggregationQuery
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StructuredAggregationQuery
impl<'de> Deserialize<'de> for StructuredAggregationQuery
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 Part for StructuredAggregationQuery
Auto Trait Implementations§
impl Freeze for StructuredAggregationQuery
impl RefUnwindSafe for StructuredAggregationQuery
impl Send for StructuredAggregationQuery
impl Sync for StructuredAggregationQuery
impl Unpin for StructuredAggregationQuery
impl UnwindSafe for StructuredAggregationQuery
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