Skip to main content

yew_datatable_core/table/
mod.rs

1/// Main table instance that coordinates all table functionality.
2///
3/// Manages columns, data, and state, providing methods for sorting,
4/// filtering, pagination, selection, and all other table operations.
5pub mod data_table;
6
7/// Options for table configuration.
8///
9/// Controls which features are enabled or disabled in the table,
10/// including sorting, filtering, pagination, selection, and more.
11pub mod data_table_options;
12
13/// Builder for table options with a fluent API.
14///
15/// Provides a convenient way to construct `DataTableOptions` instances
16/// with selective feature enablement.
17pub mod data_table_options_builder;
18
19/// Re-exports for convenient access to table types.
20///
21/// Provides a centralized location for importing commonly used
22/// table-related types and structs.
23pub mod prelude;