PaneFactory

Trait PaneFactory 

Source
pub trait PaneFactory {
    // Required method
    fn create_pane(&self, width: u16, height: u16) -> Pane;
}

Required Methods§

Source

fn create_pane(&self, width: u16, height: u16) -> Pane

Creates pane with the given width.

Implementors§