pub trait WidgetUnitData {
    // Required method
    fn id(&self) -> &WidgetId;

    // Provided method
    fn get_children(&self) -> Vec<&WidgetUnit, Global> { ... }
}

Required Methods§

source

fn id(&self) -> &WidgetId

Provided Methods§

Implementors§