1 2 3 4 5 6 7 8 9 10 11
use crate::Len; pub(crate) mod layout_impl; #[derive(Debug, Default, Clone, Copy, PartialEq)] pub struct LayoutPosition { pub left: Len, pub top: Len, pub width: Len, pub height: Len, }