1 | //! The module contains [`Records`], [`ExactRecords`], [`RecordsMut`], [`Resizable`] traits |
2 | //! and its implementations. |
3 | //! |
4 | //! Also it provies a list of helpers for a user built [`Records`] via [`into_records`]. |
5 | |
6 | mod empty_records; |
7 | mod records_mut; |
8 | mod resizable; |
9 | |
10 | pub mod into_records; |
11 | |
12 | pub use empty_records::EmptyRecords; |
13 | pub use papergrid::records::{ExactRecords, IntoRecords, IterRecords, PeekableRecords, Records}; |
14 | pub use records_mut::RecordsMut; |
15 | pub use resizable::Resizable; |
16 | |
17 | #[cfg (feature = "std" )] |
18 | #[cfg_attr (docsrs, doc(cfg(feature = "std" )))] |
19 | pub use papergrid::records::vec_records; |
20 | |