pub trait LayoutGenerator {
// Required method
fn layout(&self, window_count: u32) -> LayoutNode;
}
Expand description
Types that can generate layouts by computing a tree of LayoutNode
s.
Required Methods§
Sourcefn layout(&self, window_count: u32) -> LayoutNode
fn layout(&self, window_count: u32) -> LayoutNode
Generates a tree of LayoutNode
s.