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

Provided Methods§

source

fn button_tooltip(&self) -> Result<String>

source

fn find_button_activated(&self) -> Result<bool>

source

fn history_cur_entry(&self) -> Result<String>

source

fn history_cur_index(&self) -> Result<i32>

source

fn history_is_active(&self) -> Result<bool>

source

fn history_list(&self) -> Result<GuiCollection>

source

fn label_text(&self) -> Result<String>

source

fn prompt_text(&self) -> Result<String>

source

fn submit(&self) -> Result<()>

Implementors§