pub trait GuiTableColumn_Impl<T: HasIDispatch = Self>: HasIDispatch<T> {
    // Provided methods
    fn default_tooltip(&self) -> Result<String> { ... }
    fn fixed(&self) -> Result<bool> { ... }
    fn icon_name(&self) -> Result<String> { ... }
    fn selected(&self) -> Result<bool> { ... }
    fn title(&self) -> Result<String> { ... }
    fn tooltip(&self) -> Result<String> { ... }
}

Provided Methods§

source

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

source

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

source

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

source

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

source

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

source

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

Implementors§