pub trait ContainerImpl: ContainerImplExt + WidgetImpl {
    // Provided methods
    fn add(&self, widget: &Widget) { ... }
    fn remove(&self, widget: &Widget) { ... }
    fn check_resize(&self) { ... }
    fn set_focus_child(&self, widget: Option<&Widget>) { ... }
    fn child_type(&self) -> Type { ... }
    fn path_for_child(&self, widget: &Widget) -> WidgetPath { ... }
    fn forall(&self, include_internals: bool, callback: &Callback) { ... }
}

Provided Methods§

source

fn add(&self, widget: &Widget)

source

fn remove(&self, widget: &Widget)

source

fn check_resize(&self)

source

fn set_focus_child(&self, widget: Option<&Widget>)

source

fn child_type(&self) -> Type

source

fn path_for_child(&self, widget: &Widget) -> WidgetPath

source

fn forall(&self, include_internals: bool, callback: &Callback)

Implementors§