css_ast/units/
mod.rs

1mod angles;
2mod custom;
3mod flex;
4mod float;
5mod frequency;
6mod int;
7mod length;
8mod line_width;
9mod number;
10mod resolution;
11mod time;
12
13pub use angles::*;
14pub use custom::*;
15pub use flex::*;
16pub use float::*;
17pub use frequency::*;
18pub use int::*;
19pub use length::*;
20pub use line_width::*;
21pub use number::*;
22pub use resolution::*;
23pub use time::*;
24
25pub trait AbsoluteUnit {
26	fn to_base(&self) -> Self;
27}