pub trait GuiTableRowExt<T: HasIDispatch = Self>: HasIDispatch<T> {
// Provided methods
fn selectable(&self) -> Result<bool> { ... }
fn selected(&self) -> Result<bool> { ... }
fn set_selected(&self, value: bool) -> Result<()> { ... }
}Provided Methods§
fn selectable(&self) -> Result<bool>
fn selected(&self) -> Result<bool>
fn set_selected(&self, value: bool) -> Result<()>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".