pub trait GuiCheckBoxExt<T: HasIDispatch = Self>: HasIDispatch<T> {
Show 14 methods
// Provided methods
fn color_index(&self) -> Result<i32> { ... }
fn color_intensified(&self) -> Result<i32> { ... }
fn color_inverse(&self) -> Result<bool> { ... }
fn flushing(&self) -> Result<bool> { ... }
fn is_left_label(&self) -> Result<bool> { ... }
fn is_list_element(&self) -> Result<bool> { ... }
fn is_right_label(&self) -> Result<bool> { ... }
fn left_label(&self) -> Result<GuiComponent> { ... }
fn right_label(&self) -> Result<GuiComponent> { ... }
fn row_text(&self) -> Result<String> { ... }
fn selected(&self) -> Result<bool> { ... }
fn set_selected(&self, value: bool) -> Result<()> { ... }
fn get_list_property(&self, p0: String) -> Result<String> { ... }
fn get_list_property_non_rec(&self, p0: String) -> Result<String> { ... }
}Provided Methods§
fn color_index(&self) -> Result<i32>
fn color_intensified(&self) -> Result<i32>
fn color_inverse(&self) -> Result<bool>
fn flushing(&self) -> Result<bool>
fn is_left_label(&self) -> Result<bool>
fn is_list_element(&self) -> Result<bool>
fn is_right_label(&self) -> Result<bool>
fn left_label(&self) -> Result<GuiComponent>
fn right_label(&self) -> Result<GuiComponent>
fn row_text(&self) -> Result<String>
fn selected(&self) -> Result<bool>
fn set_selected(&self, value: bool) -> Result<()>
fn get_list_property(&self, p0: String) -> Result<String>
fn get_list_property_non_rec(&self, p0: String) -> Result<String>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".