pub trait IGUISettings: IObject {
// Provided methods
fn m_double_click_selects_word(self) -> bool { ... }
fn set_m_double_click_selects_word(self, value: bool) { ... }
fn m_triple_click_selects_line(self) -> bool { ... }
fn set_m_triple_click_selects_line(self, value: bool) { ... }
fn m_cursor_color(self) -> Color { ... }
fn set_m_cursor_color(self, value: Color) { ... }
fn m_cursor_flash_speed(self) -> f32 { ... }
fn set_m_cursor_flash_speed(self, value: f32) { ... }
fn m_selection_color(self) -> Color { ... }
fn set_m_selection_color(self, value: Color) { ... }
}Provided Methods§
fn m_double_click_selects_word(self) -> bool
fn set_m_double_click_selects_word(self, value: bool)
fn m_triple_click_selects_line(self) -> bool
fn set_m_triple_click_selects_line(self, value: bool)
fn m_cursor_color(self) -> Color
fn set_m_cursor_color(self, value: Color)
fn m_cursor_flash_speed(self) -> f32
fn set_m_cursor_flash_speed(self, value: f32)
fn m_selection_color(self) -> Color
fn set_m_selection_color(self, value: Color)
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.