diff options
| author | Laurenz <laurmaedje@gmail.com> | 2020-01-24 16:23:57 +0100 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2020-01-24 16:23:57 +0100 |
| commit | 0a087cd28bbee5fcdffbb9d49b0ba9f413ad7f92 (patch) | |
| tree | fe00c96969ed2ee69e6d3b42de8ff2558f792edd /src/layout/actions.rs | |
| parent | 03fddaf3aea778057aedd74dbcb27bae971ec22f (diff) | |
Reorganize modules 🧱
Diffstat (limited to 'src/layout/actions.rs')
| -rw-r--r-- | src/layout/actions.rs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/layout/actions.rs b/src/layout/actions.rs index 1bf5d684..710d92b4 100644 --- a/src/layout/actions.rs +++ b/src/layout/actions.rs @@ -1,10 +1,12 @@ //! Drawing and cofiguration actions composing layouts. +use std::io::{self, Write}; use std::fmt::{self, Display, Formatter}; use toddle::query::FontIndex; -use super::*; -use LayoutAction::*; +use crate::size::{Size, Size2D}; +use super::{Layout, Serialize}; +use self::LayoutAction::*; /// A layouting action. |
