logo
pub trait Widget {
    fn create_element(&self) -> Box<dyn Element>;

    fn is_none(&self) -> bool { ... }
}

Required Methods

Inflates this configuration to a concrete instance

Provided Methods

Implementors