pub trait GuiInputFieldControlExt<T: HasIDispatch = Self>: HasIDispatch<T> {
// Provided methods
fn button_tooltip(&self) -> Result<String> { ... }
fn find_button_activated(&self) -> Result<bool> { ... }
fn history_cur_entry(&self) -> Result<String> { ... }
fn history_cur_index(&self) -> Result<i32> { ... }
fn history_is_active(&self) -> Result<bool> { ... }
fn history_list(&self) -> Result<GuiCollection> { ... }
fn label_text(&self) -> Result<String> { ... }
fn prompt_text(&self) -> Result<String> { ... }
fn submit(&self) -> Result<()> { ... }
}Provided Methods§
fn history_cur_entry(&self) -> Result<String>
fn history_cur_index(&self) -> Result<i32>
fn history_is_active(&self) -> Result<bool>
fn history_list(&self) -> Result<GuiCollection>
fn label_text(&self) -> Result<String>
fn prompt_text(&self) -> Result<String>
fn submit(&self) -> Result<()>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".