| 1 | //! A module which contains a general settings which might be used in other grid implementations. |
| 2 | |
| 3 | mod alignment; |
| 4 | mod border; |
| 5 | mod borders; |
| 6 | mod entity; |
| 7 | mod formatting; |
| 8 | mod horizontal_line; |
| 9 | mod indent; |
| 10 | mod position; |
| 11 | mod sides; |
| 12 | mod vertical_line; |
| 13 | |
| 14 | pub mod compact; |
| 15 | #[cfg (feature = "std" )] |
| 16 | pub mod spanned; |
| 17 | |
| 18 | pub use alignment::{AlignmentHorizontal, AlignmentVertical}; |
| 19 | pub use border::Border; |
| 20 | pub use borders::Borders; |
| 21 | pub use entity::{Entity, EntityIterator}; |
| 22 | pub use formatting::Formatting; |
| 23 | pub use horizontal_line::HorizontalLine; |
| 24 | pub use indent::Indent; |
| 25 | pub use position::Position; |
| 26 | pub use sides::Sides; |
| 27 | pub use vertical_line::VerticalLine; |
| 28 | |