usecrate::features::common::Rect;#[derive(Clone)]/// Struct storing ccanvas-layout allocated space info
pubstructLayoutInfo{/// Area allocated
pubrect: Rect,
}implLayoutInfo{/// Create a new layout info of rect
pubfnnew(rect: Rect)->Self{
LayoutInfo { rect }}}