rat_widget/
table.rs

1//! Table widget.
2//!
3//! Can be used as a drop-in replacement for the ratatui table. But
4//! that's not the point of this widget.
5//!
6//! This widget uses the [TableData] trait instead
7//! of rendering all the table-cells and putting them into a Vec.
8//! This way rendering time only depends on the screen-size not on
9//! the size of your data.
10//!
11//! There is a second trait [TableDataIter] that
12//! works better if you only have an Iterator over your data.
13//!
14//! See [rat-ftable](https://docs.rs/rat-ftable/)
15pub use rat_ftable::{
16    Table, TableContext, TableData, TableDataIter, TableSelection, TableState, TableStyle, edit,
17    handle_doubleclick_events, selection, textdata,
18};