pub struct AggregateGroupResult {
pub key: String,
pub value: f64,
}Expand description
A single group result from aggregation.
Fields§
§key: StringGroup key (the field value).
value: f64Aggregated value for this group.
Trait Implementations§
Source§impl Clone for AggregateGroupResult
impl Clone for AggregateGroupResult
Source§fn clone(&self) -> AggregateGroupResult
fn clone(&self) -> AggregateGroupResult
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 AggregateGroupResult
impl Debug for AggregateGroupResult
Source§impl<'de> Deserialize<'de> for AggregateGroupResult
impl<'de> Deserialize<'de> for AggregateGroupResult
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
Source§impl PartialEq for AggregateGroupResult
impl PartialEq for AggregateGroupResult
Source§impl Serialize for AggregateGroupResult
impl Serialize for AggregateGroupResult
impl StructuralPartialEq for AggregateGroupResult
Auto Trait Implementations§
impl Freeze for AggregateGroupResult
impl RefUnwindSafe for AggregateGroupResult
impl Send for AggregateGroupResult
impl Sync for AggregateGroupResult
impl Unpin for AggregateGroupResult
impl UnsafeUnpin for AggregateGroupResult
impl UnwindSafe for AggregateGroupResult
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