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