GroupExt

Trait GroupExt 

Source
pub trait GroupExt: WidgetExt {
    // Provided methods
    fn begin(&self) { ... }
    fn end(&self) { ... }
    fn clear(&self) { ... }
    fn add<W: WidgetExt>(&self, widget: &W)
       where Self: Sized { ... }
    fn remove<W: WidgetExt>(&self, widget: &W)
       where Self: Sized { ... }
    fn set_align_content(&self, align: AlignContent) { ... }
    fn set_justify_content(&self, align: AlignContent) { ... }
    fn children(&self) -> Vec<Box<dyn WidgetExt>> { ... }
}

Provided Methods§

Source

fn begin(&self)

Source

fn end(&self)

Source

fn clear(&self)

Source

fn add<W: WidgetExt>(&self, widget: &W)
where Self: Sized,

Source

fn remove<W: WidgetExt>(&self, widget: &W)
where Self: Sized,

Source

fn set_align_content(&self, align: AlignContent)

Source

fn set_justify_content(&self, align: AlignContent)

Source

fn children(&self) -> Vec<Box<dyn WidgetExt>>

Implementors§