pub trait PaneFactory {
// Required method
fn create_pane(&self, width: u16, height: u16) -> Pane;
}Required Methods§
Sourcefn create_pane(&self, width: u16, height: u16) -> Pane
fn create_pane(&self, width: u16, height: u16) -> Pane
Creates pane with the given width.