polars_view/
lib.rs

1#![warn(clippy::all)]
2#![doc = include_str!("../README.md")]
3
4// Modules that make up the PolarsView library.
5mod args;
6mod container;
7mod error;
8mod extension;
9mod file_dialog;
10mod filters;
11mod layout;
12mod metadata;
13mod polars;
14mod sort;
15mod sqls;
16mod traits;
17
18// Publicly expose the contents of these modules.
19pub use self::{
20    // add to lib
21    args::Arguments,
22    container::*,
23    error::*,
24    extension::*,
25    file_dialog::*,
26    filters::*,
27    layout::*,
28    metadata::*,
29    polars::*,
30    sort::*,
31    sqls::*,
32    traits::*,
33};