Skip to main content

IGodSelectRootMethods

Trait IGodSelectRootMethods 

Source
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§

Source

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

Source

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

Source

fn get_select_event_handler_for_refine_ring( self, ) -> GodUnitSelectMenu_SelectEventHandler

GetSelectEventHandlerForRefineRing() overload

Source

fn close_status(self)

CloseStatus() overload

Source

fn on_select_menu_item( self, god: impl Into<GodUnit>, type: impl Into<RingCleaningSequence_GodType>, )

OnSelectMenuItem(crate::app::godunit::GodUnit, crate::app::ringcleaningsequence::RingCleaningSequence_GodType) overload

Source

fn on_select_menu_item_for_refine_ring( self, god: impl Into<GodUnit>, type: impl Into<RingCleaningSequence_GodType>, )

OnSelectMenuItemForRefineRing(crate::app::godunit::GodUnit, crate::app::ringcleaningsequence::RingCleaningSequence_GodType) overload

Source

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

Source

fn setup_ring_image(self)

SetupRingImage() overload

Source

fn ctor(self)

.ctor() 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§

Source§

impl<__T: IGodSelectRoot> IGodSelectRootMethods for __T

Available on crate feature app-godselectroot only.