pub trait GuiInputFieldControl_Impl<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<()> { ... }
}