Skip to main content

yew_datatable_core/row/
mod.rs

1/// Row wrapper type with metadata.
2///
3/// Wraps the original data and adds metadata for table operations
4/// like selection, expansion, grouping, and nested row support.
5pub mod data_table_row;
6
7/// Unique identifier for a table row.
8///
9/// Row IDs are used to reference rows throughout the table API
10/// for operations like selection and expansion.
11pub mod data_table_row_id;
12
13/// Row model that manages data processing through the table pipeline.
14///
15/// Handles filtering, sorting, grouping, expansion, and pagination
16/// of row data, maintaining index mappings at each processing stage.
17pub mod data_table_row_model;
18
19/// Re-exports for convenient access to row types.
20///
21/// Provides a centralized location for importing commonly used
22/// row-related types and structs.
23pub mod prelude;