pub trait Child: RLimits { // Required methods fn coord(&self) -> (usize, usize); fn span(&self) -> (usize, usize); }
(Column, Row) coordinate of the item
(Column, Row) span of the item, lets items span across multiple rows or columns. Minimum is (1,1), and the layout won’t save you if you tell it to overlap items.