pub trait ComboBoxExtManual: IsA<ComboBox> + 'static {
// Provided methods
fn unset_row_separator_func(&self) { ... }
fn set_active(&self, index_: Option<u32>) { ... }
fn active(&self) -> Option<u32> { ... }
}
๐Deprecated: Since 4.10
Expand description
Trait containing manually implemented methods of
ComboBox
.
Provided Methodsยง
fn unset_row_separator_func(&self)
๐Deprecated: Since 4.10
fn set_active(&self, index_: Option<u32>)
๐Deprecated: Since 4.10
fn active(&self) -> Option<u32>
๐Deprecated: Since 4.10
Dyn Compatibilityยง
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.