pub trait Child: RLimits { // Required methods fn index(&self) -> (usize, usize); fn span(&self) -> (usize, usize); }
(Row, Column) index of the item
(Row, Column) 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.