1 | //! The module contains a list of helpers for [`IntoRecords`] |
2 | //! |
3 | //! [`IntoRecords`]: crate::grid::records::IntoRecords |
4 | |
5 | pub mod limit_column_records; |
6 | pub mod limit_row_records; |
7 | |
8 | #[cfg (feature = "std" )] |
9 | #[cfg_attr (docsrs, doc(cfg(feature = "std" )))] |
10 | pub mod buf_records; |
11 | #[cfg (feature = "std" )] |
12 | #[cfg_attr (docsrs, doc(cfg(feature = "std" )))] |
13 | pub mod either_string; |
14 | #[cfg (feature = "std" )] |
15 | #[cfg_attr (docsrs, doc(cfg(feature = "std" )))] |
16 | pub mod truncate_records; |
17 | |
18 | #[cfg (feature = "std" )] |
19 | #[cfg_attr (docsrs, doc(cfg(feature = "std" )))] |
20 | pub use buf_records::{BufColumns, BufRows}; |
21 | #[cfg (feature = "std" )] |
22 | #[cfg_attr (docsrs, doc(cfg(feature = "std" )))] |
23 | pub use truncate_records::TruncateContent; |
24 | |
25 | pub use limit_column_records::LimitColumns; |
26 | pub use limit_row_records::LimitRows; |
27 | |