hui_shared/
rect.rs

1//! contains types which represent the sides and corners of a rectangular shape.
2
3//XXX: this is kinda a mess, either move the rect struct here or come up with a better name for this module
4#[allow(clippy::module_inception)]
5mod rect;
6pub use rect::Rect;
7
8mod sides;
9pub use sides::Sides;
10
11mod corners;
12pub use corners::Corners;
13
14mod color;
15pub use color::FillColor;