pub trait IGodSelectRootMethods: IGodSelectRoot {
// Provided methods
fn create(
self,
super_: impl Into<ProcInst>,
decide_event_handler: impl Into<GodUnitSelectMenu_DecideEventHandler>,
selected_god: impl Into<GodUnit>,
) { ... }
fn create_for_refine_ring(
self,
decide_event_handler: impl Into<GodUnitSelectMenu_DecideEventHandler>,
selected_god: impl Into<GodUnit>,
) { ... }
fn get_select_event_handler_for_refine_ring(
self,
) -> GodUnitSelectMenu_SelectEventHandler { ... }
fn close_status(self) { ... }
fn on_select_menu_item(
self,
god: impl Into<GodUnit>,
type: impl Into<RingCleaningSequence_GodType>,
) { ... }
fn on_select_menu_item_for_refine_ring(
self,
god: impl Into<GodUnit>,
type: impl Into<RingCleaningSequence_GodType>,
) { ... }
fn show_model(
self,
god_unit: impl Into<GodUnit>,
type: impl Into<RingCleaningSequence_GodType>,
) { ... }
fn setup_ring_image(self) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn create(
self,
super_: impl Into<ProcInst>,
decide_event_handler: impl Into<GodUnitSelectMenu_DecideEventHandler>,
selected_god: impl Into<GodUnit>,
)
fn create( self, super_: impl Into<ProcInst>, decide_event_handler: impl Into<GodUnitSelectMenu_DecideEventHandler>, selected_god: impl Into<GodUnit>, )
Create(crate::app::procinst::ProcInst, crate::app::godunitselectmenu::GodUnitSelectMenu_DecideEventHandler, crate::app::godunit::GodUnit) overload
Sourcefn create_for_refine_ring(
self,
decide_event_handler: impl Into<GodUnitSelectMenu_DecideEventHandler>,
selected_god: impl Into<GodUnit>,
)
fn create_for_refine_ring( self, decide_event_handler: impl Into<GodUnitSelectMenu_DecideEventHandler>, selected_god: impl Into<GodUnit>, )
CreateForRefineRing(crate::app::godunitselectmenu::GodUnitSelectMenu_DecideEventHandler, crate::app::godunit::GodUnit) overload
Sourcefn get_select_event_handler_for_refine_ring(
self,
) -> GodUnitSelectMenu_SelectEventHandler
fn get_select_event_handler_for_refine_ring( self, ) -> GodUnitSelectMenu_SelectEventHandler
GetSelectEventHandlerForRefineRing() overload
Sourcefn close_status(self)
fn close_status(self)
CloseStatus() overload
OnSelectMenuItem(crate::app::godunit::GodUnit, crate::app::ringcleaningsequence::RingCleaningSequence_GodType) overload
OnSelectMenuItemForRefineRing(crate::app::godunit::GodUnit, crate::app::ringcleaningsequence::RingCleaningSequence_GodType) overload
Sourcefn show_model(
self,
god_unit: impl Into<GodUnit>,
type: impl Into<RingCleaningSequence_GodType>,
)
fn show_model( self, god_unit: impl Into<GodUnit>, type: impl Into<RingCleaningSequence_GodType>, )
ShowModel(crate::app::godunit::GodUnit, crate::app::ringcleaningsequence::RingCleaningSequence_GodType) overload
Sourcefn setup_ring_image(self)
fn setup_ring_image(self)
SetupRingImage() 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: IGodSelectRoot> IGodSelectRootMethods for __T
app-godselectroot only.