enum AccumInner {
    Bool {
        trues: Diff,
        falses: Diff,
    },
    SimpleNumber {
        accum: i128,
        non_nulls: Diff,
    },
    Float {
        accum: i128,
        pos_infs: Diff,
        neg_infs: Diff,
        nans: Diff,
        non_nulls: Diff,
    },
    Numeric {
        accum: OrderedDecimal<NumericAgg>,
        pos_infs: Diff,
        neg_infs: Diff,
        nans: Diff,
        non_nulls: Diff,
    },
}
Expand description

Accumulates values for the various types of accumulable aggregations.

We assume that there are not more than 2^32 elements for the aggregation. Thus we can perform a summation over i32 in an i64 accumulator and not worry about exceeding its bounds.

The float accumulator performs accumulation in fixed point arithmetic. The fixed point representation has less precision than a double. It is entirely possible that the values of the accumulator overflow, thus we have to use wrapping arithmetic to preserve group guarantees.

Variants§

§

Bool

Fields

§trues: Diff

The number of true values observed.

§falses: Diff

The number of false values observed.

Accumulates boolean values.

§

SimpleNumber

Fields

§accum: i128

The accumulation of all non-NULL values observed.

§non_nulls: Diff

The number of non-NULL values observed.

Accumulates simple numeric values.

§

Float

Fields

§accum: i128

Accumulates non-special float values, mapped to a fixed precision i128 domain to preserve associativity and commutativity

§pos_infs: Diff

Counts +inf

§neg_infs: Diff

Counts -inf

§nans: Diff

Counts NaNs

§non_nulls: Diff

Counts non-NULL values

Accumulates float values.

§

Numeric

Fields

§accum: OrderedDecimal<NumericAgg>

Accumulates non-special values

§pos_infs: Diff

Counts +inf

§neg_infs: Diff

Counts -inf

§nans: Diff

Counts NaNs

§non_nulls: Diff

Counts non-NULL values

Accumulates arbitrary precision decimals.

Trait Implementations§

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Deserialize this value from the given Serde deserializer. Read more
Output type per the Mul trait.
Core method per the Mul trait.
This method returns an Ordering between self and other. Read more
Compares and returns the maximum of two values. Read more
Compares and returns the minimum of two values. Read more
Restrict a value to a certain interval. Read more
This method tests for self and other values to be equal, and is used by ==.
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
This method returns an ordering between self and other values if one exists. Read more
This method tests less than (for self and other) and is used by the < operator. Read more
This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
This method tests greater than (for self and other) and is used by the > operator. Read more
This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Returns true if the element is the additive identity. Read more
The method of std::ops::AddAssign, for types that do not implement AddAssign.
Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
Compare self to key and return true if they are equal.

Returns the argument unchanged.

Converts to this type from a reference to the input type.
Attaches the provided Context to this type, returning a WithContext wrapper. Read more
Attaches the current Context to this type, returning a WithContext wrapper. Read more
Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Wrap the input message T in a tonic::Request
The alignment of pointer.
The type for initializers.
Initializes a with the given initializer. Read more
Dereferences the given pointer. Read more
Mutably dereferences the given pointer. Read more
Drops the object pointed to by the given pointer. Read more
Upcasts this ProgressEventTimestamp to Any. Read more
Returns the name of the concrete type of this object. Read more
Should always be Self
The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.
Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more