nu_table/lib.rs
1#![doc = include_str!("../README.md")]
2
3mod table;
4mod table_theme;
5mod types;
6mod unstructured_table;
7mod util;
8
9pub mod common;
10
11pub use common::{StringResult, TableResult};
12pub use nu_color_config::TextStyle;
13pub use table::{NuRecords, NuRecordsValue, NuTable};
14pub use table_theme::TableTheme;
15pub use types::{CollapsedTable, ExpandedTable, JustTable, TableOpts, TableOutput};
16pub use unstructured_table::UnstructuredTable;
17pub use util::*;