pub trait IDebugUIHandlerWidgetMethods: IDebugUIHandlerWidget {
Show 18 methods
// Provided methods
fn get_parent_ui_handler(self) -> DebugUIHandlerWidget { ... }
fn set_parent_ui_handler(self, value: impl Into<DebugUIHandlerWidget>) { ... }
fn get_previous_ui_handler(self) -> DebugUIHandlerWidget { ... }
fn set_previous_ui_handler(self, value: impl Into<DebugUIHandlerWidget>) { ... }
fn get_next_ui_handler(self) -> DebugUIHandlerWidget { ... }
fn set_next_ui_handler(self, value: impl Into<DebugUIHandlerWidget>) { ... }
fn on_enable(self) { ... }
fn set_widget(self, widget: impl Into<DebugUI_Widget>) { ... }
fn get_widget(self) -> DebugUI_Widget { ... }
fn cast_widget<M0: IlType + Copy + ClassIdentity>(self) -> M0 { ... }
fn on_selection(
self,
from_next: impl Into<bool>,
previous: impl Into<DebugUIHandlerWidget>,
) -> bool { ... }
fn on_deselection(self) { ... }
fn on_action(self) { ... }
fn on_increment(self, fast: impl Into<bool>) { ... }
fn on_decrement(self, fast: impl Into<bool>) { ... }
fn previous(self) -> DebugUIHandlerWidget { ... }
fn next(self) -> DebugUIHandlerWidget { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_parent_ui_handler(self) -> DebugUIHandlerWidget
fn get_parent_ui_handler(self) -> DebugUIHandlerWidget
get_parentUIHandler() overload
Sourcefn set_parent_ui_handler(self, value: impl Into<DebugUIHandlerWidget>)
fn set_parent_ui_handler(self, value: impl Into<DebugUIHandlerWidget>)
set_parentUIHandler(crate::unity_engine::rendering::ui::debuguihandlerwidget::DebugUIHandlerWidget) overload
Sourcefn get_previous_ui_handler(self) -> DebugUIHandlerWidget
fn get_previous_ui_handler(self) -> DebugUIHandlerWidget
get_previousUIHandler() overload
Sourcefn set_previous_ui_handler(self, value: impl Into<DebugUIHandlerWidget>)
fn set_previous_ui_handler(self, value: impl Into<DebugUIHandlerWidget>)
set_previousUIHandler(crate::unity_engine::rendering::ui::debuguihandlerwidget::DebugUIHandlerWidget) overload
Sourcefn get_next_ui_handler(self) -> DebugUIHandlerWidget
fn get_next_ui_handler(self) -> DebugUIHandlerWidget
get_nextUIHandler() overload
Sourcefn set_next_ui_handler(self, value: impl Into<DebugUIHandlerWidget>)
fn set_next_ui_handler(self, value: impl Into<DebugUIHandlerWidget>)
set_nextUIHandler(crate::unity_engine::rendering::ui::debuguihandlerwidget::DebugUIHandlerWidget) overload
Sourcefn set_widget(self, widget: impl Into<DebugUI_Widget>)
fn set_widget(self, widget: impl Into<DebugUI_Widget>)
SetWidget(crate::unity_engine::rendering::debugui::DebugUI_Widget) overload
Sourcefn get_widget(self) -> DebugUI_Widget
fn get_widget(self) -> DebugUI_Widget
GetWidget() overload
fn cast_widget<M0: IlType + Copy + ClassIdentity>(self) -> M0
Sourcefn on_selection(
self,
from_next: impl Into<bool>,
previous: impl Into<DebugUIHandlerWidget>,
) -> bool
fn on_selection( self, from_next: impl Into<bool>, previous: impl Into<DebugUIHandlerWidget>, ) -> bool
OnSelection(bool, crate::unity_engine::rendering::ui::debuguihandlerwidget::DebugUIHandlerWidget) overload
Sourcefn on_deselection(self)
fn on_deselection(self)
OnDeselection() overload
Sourcefn on_increment(self, fast: impl Into<bool>)
fn on_increment(self, fast: impl Into<bool>)
OnIncrement(bool) overload
Sourcefn on_decrement(self, fast: impl Into<bool>)
fn on_decrement(self, fast: impl Into<bool>)
OnDecrement(bool) overload
Sourcefn previous(self) -> DebugUIHandlerWidget
fn previous(self) -> DebugUIHandlerWidget
Previous() overload
Sourcefn next(self) -> DebugUIHandlerWidget
fn next(self) -> DebugUIHandlerWidget
Next() overload
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.
Implementors§
impl<__T: IDebugUIHandlerWidget> IDebugUIHandlerWidgetMethods for __T
unity_engine-rendering-ui-debuguihandlerwidget only.