usegpui::{AnyElement, App, Window};/// A layout that can wrap around routed elements.
/// Used by [`Router`](crate::Router) to render layouts around matched routes.
pubtraitLayout{/// Sets the outlet element that the layout should render its children into.
fnoutlet(&mutself, element: AnyElement);/// Renders the layout with the given outlet element.
fnrender_layout(self: Box<Self>, window:&mut Window, cx:&mut App)-> AnyElement;}