pub trait IDebugUIHandlerWidget: IMonoBehaviour {
// Provided methods
fn color_default(self) -> Color { ... }
fn set_color_default(self, value: Color) { ... }
fn color_selected(self) -> Color { ... }
fn set_color_selected(self, value: Color) { ... }
fn m_widget(self) -> DebugUI_Widget { ... }
fn set_m_widget(self, value: DebugUI_Widget) { ... }
}Provided Methods§
fn color_default(self) -> Color
fn set_color_default(self, value: Color)
fn color_selected(self) -> Color
fn set_color_selected(self, value: Color)
fn m_widget(self) -> DebugUI_Widget
fn set_m_widget(self, value: DebugUI_Widget)
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.