pub trait DataTableSource {
// Required methods
fn row_count(&self) -> usize;
fn get_row(&self, index: usize) -> Option<DataTableRow<'_>>;
// Provided methods
fn is_row_count_approximate(&self) -> bool { ... }
fn selected_row_count(&self) -> usize { ... }
}Expand description
Trait for providing data to a table lazily