pub trait ComboBoxExtManual: 'static {
    fn set_active(&self, index_: Option<u32>);
    fn get_active(&self) -> Option<u32>;
}

Required Methods

Implementors