Trait agui_core::widget::WidgetType[][src]

pub trait WidgetType {
    fn get_type_id(&self) -> TypeId;
fn get_type_name(&self) -> &'static str; }
Expand description

Makes internal type information available at runtime.

Required methods

Return the TypeId::of() of the widget.

Return the name of the widget as a string. Generally this is the name of the struct.

Implementors