diff options
| author | Laurenz <laurmaedje@gmail.com> | 2019-11-17 15:16:37 +0100 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2019-11-17 15:16:37 +0100 |
| commit | f6cb4d725ee6e4fd09b92b5af7348d11ac951b10 (patch) | |
| tree | 7cf8bc7b0158a8a453fd9e2a2fe5a857ef036d5e /src/func/mod.rs | |
| parent | 4d0bdc4ca4cb5e8ca1a70b38a0fc0ec37d9e4857 (diff) | |
Update standard library functions 🎁
Diffstat (limited to 'src/func/mod.rs')
| -rw-r--r-- | src/func/mod.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/func/mod.rs b/src/func/mod.rs index f59c1ec0..27dceee3 100644 --- a/src/func/mod.rs +++ b/src/func/mod.rs @@ -20,6 +20,7 @@ pub mod prelude { pub use crate::size::{Size, Size2D, SizeBox}; pub use crate::style::{PageStyle, TextStyle}; pub use super::helpers::*; + pub use Command::*; } /// Typesetting function types. @@ -93,6 +94,9 @@ pub enum Command<'a> { Add(Layout), AddMultiple(MultiLayout), + AddPrimarySpace(Size), + AddSecondarySpace(Size), + FinishRun, FinishBox, FinishLayout, |
