pub trait Layout {
// Required methods
fn outlet(&mut self, element: AnyElement);
fn render_layout(
self: Box<Self>,
window: &mut Window,
cx: &mut App,
) -> AnyElement;
}pub trait Layout {
// Required methods
fn outlet(&mut self, element: AnyElement);
fn render_layout(
self: Box<Self>,
window: &mut Window,
cx: &mut App,
) -> AnyElement;
}