fireplace_lib 3.0.2

Modular wayland window manager library
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Collection of `Deserialize` implementations for `conrod`
//! and related data types

mod image;
mod color;
mod align;
mod font;
mod justify;

pub use self::align::Align;
pub use self::color::Color;
pub use self::font::Font;
pub use self::image::Image;
pub use self::justify::Justify;