yew_datatable_core/features/aggregation/mod.rs
1/// Aggregated value for a column in grouped rows.
2///
3/// Represents the result of an aggregation operation on a column,
4/// storing the computed value and the function used to compute it.
5pub mod aggregated_value;
6
7/// Custom aggregation function wrapper.
8///
9/// Allows users to provide custom aggregation functions for columns
10/// requiring specialized aggregation behavior in grouped rows.
11pub mod aggregation_fn;
12
13/// Complete aggregation state for the table.
14///
15/// Manages column-level aggregation function assignments
16/// and provides configuration for aggregation behavior.
17pub mod aggregation_state;
18
19/// Built-in aggregation functions for grouped rows.
20///
21/// Provides pre-built aggregation strategies for common
22/// statistical operations on grouped row data.
23pub mod built_in_aggregation;
24
25/// Re-exports for convenient access to aggregation types.
26///
27/// Provides a centralized location for importing commonly used
28/// aggregation-related types, enums, and structs.
29pub mod prelude;