pub trait GuiComboBoxControlExt<T: HasIDispatch = Self>: HasIDispatch<T> {
// Provided methods
fn cur_list_box_entry(&self) -> Result<GuiComponent> { ... }
fn entries(&self) -> Result<GuiCollection> { ... }
fn is_list_box_active(&self) -> Result<bool> { ... }
fn label_text(&self) -> Result<String> { ... }
fn selected(&self) -> Result<String> { ... }
fn set_selected(&self, value: String) -> Result<()> { ... }
fn text(&self) -> Result<String> { ... }
fn fire_selected(&self) -> Result<()> { ... }
}Provided Methods§
fn cur_list_box_entry(&self) -> Result<GuiComponent>
fn entries(&self) -> Result<GuiCollection>
fn is_list_box_active(&self) -> Result<bool>
fn label_text(&self) -> Result<String>
fn selected(&self) -> Result<String>
fn set_selected(&self, value: String) -> Result<()>
fn text(&self) -> Result<String>
fn fire_selected(&self) -> Result<()>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".