pub struct ExactAggregatePartial {
pub group_key: Vec<SqlValue>,
pub states: Vec<Vec<SqlValue>>,
}Expand description
One group-local vector of exact accumulator states.
Fields§
§group_key: Vec<SqlValue>§states: Vec<Vec<SqlValue>>One serializable state vector per aggregate expression.
Trait Implementations§
Source§impl Clone for ExactAggregatePartial
impl Clone for ExactAggregatePartial
Source§fn clone(&self) -> ExactAggregatePartial
fn clone(&self) -> ExactAggregatePartial
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 ExactAggregatePartial
impl Debug for ExactAggregatePartial
Source§impl PartialEq for ExactAggregatePartial
impl PartialEq for ExactAggregatePartial
impl StructuralPartialEq for ExactAggregatePartial
Auto Trait Implementations§
impl Freeze for ExactAggregatePartial
impl RefUnwindSafe for ExactAggregatePartial
impl Send for ExactAggregatePartial
impl Sync for ExactAggregatePartial
impl Unpin for ExactAggregatePartial
impl UnsafeUnpin for ExactAggregatePartial
impl UnwindSafe for ExactAggregatePartial
Blanket Implementations§
impl<T> Allocation for T
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