pub trait CombineAggStatus<Rhs> {
type Output;
}Expand description
Combine two aggregate statuses.
| Left | Right | Output |
|---|---|---|
| AllScalar | AllScalar | AllScalar |
| AllAgg | AllAgg | AllAgg |
| anything else | _ | MixedAgg |
Required Associated Types§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".