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 indent; |
8 | mod line; |
9 | mod position; |
10 | mod sides; |
11 | |
12 | pub mod compact; |
13 | #[cfg (feature = "std" )] |
14 | pub mod spanned; |
15 | |
16 | pub use alignment::{AlignmentHorizontal, AlignmentVertical}; |
17 | pub use border::Border; |
18 | pub use borders::Borders; |
19 | pub use entity::{Entity, EntityIterator}; |
20 | pub use indent::Indent; |
21 | pub use line::Line; |
22 | pub use position::Position; |
23 | pub use sides::Sides; |
24 | |