pub trait LayoutChildExt: 'static {
    // Required methods
    fn child_widget(&self) -> Widget;
    fn layout_manager(&self) -> LayoutManager;
}
Expand description

Required Methods§

source

fn child_widget(&self) -> Widget

Retrieves the Widget associated to the given @self.

Returns

a Widget

source

fn layout_manager(&self) -> LayoutManager

Retrieves the LayoutManager instance that created the given @self.

Returns

a LayoutManager

Implementors§