Skip to main content

IGodUnitMenuItemMethods

Trait IGodUnitMenuItemMethods 

Source
pub trait IGodUnitMenuItemMethods: IGodUnitMenuItem {
    // Provided methods
    fn get_god(self) -> GodUnit { ... }
    fn set_god(self, value: impl Into<GodUnit>) { ... }
    fn ctor(
        self,
        god: impl Into<GodUnit>,
        select_event_handler: impl Into<GodUnitSelectMenu_SelectEventHandler>,
        decide_event_handler: impl Into<GodUnitSelectMenu_DecideEventHandler>,
        is_selected: impl Into<bool>,
        is_show_ring_dirty_icon: impl Into<bool>,
        type: impl Into<RingCleaningSequence_GodType>,
    ) { ... }
    fn build_attribute(self) -> BasicMenuItem_Attribute { ... }
    fn a_call(self) -> BasicMenu_Result { ... }
    fn b_call(self) -> BasicMenu_Result { ... }
    fn on_select(self) { ... }
    fn get_god_name(self) -> Il2CppString { ... }
    fn get_optional_god_data(self) -> GodData { ... }
    fn get_type(self) -> RingCleaningSequence_GodType { ... }
    fn get_is_show_ring_icon(self) -> bool { ... }
}

Provided Methods§

Source

fn get_god(self) -> GodUnit

get_God() overload

Source

fn set_god(self, value: impl Into<GodUnit>)

set_God(crate::app::godunit::GodUnit) overload

Source

fn ctor( self, god: impl Into<GodUnit>, select_event_handler: impl Into<GodUnitSelectMenu_SelectEventHandler>, decide_event_handler: impl Into<GodUnitSelectMenu_DecideEventHandler>, is_selected: impl Into<bool>, is_show_ring_dirty_icon: impl Into<bool>, type: impl Into<RingCleaningSequence_GodType>, )

.ctor(crate::app::godunit::GodUnit, crate::app::godunitselectmenu::GodUnitSelectMenu_SelectEventHandler, crate::app::godunitselectmenu::GodUnitSelectMenu_DecideEventHandler, bool, bool, crate::app::ringcleaningsequence::RingCleaningSequence_GodType) overload

Source

fn build_attribute(self) -> BasicMenuItem_Attribute

BuildAttribute() overload

Source

fn a_call(self) -> BasicMenu_Result

ACall() overload

Source

fn b_call(self) -> BasicMenu_Result

BCall() overload

Source

fn on_select(self)

OnSelect() overload

Source

fn get_god_name(self) -> Il2CppString

GetGodName() overload

Source

fn get_optional_god_data(self) -> GodData

GetOptionalGodData() overload

Source

fn get_type(self) -> RingCleaningSequence_GodType

get_Type() overload

Source

fn get_is_show_ring_icon(self) -> bool

get_IsShowRingIcon() 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: IGodUnitMenuItem> IGodUnitMenuItemMethods for __T

Available on crate feature app-godunitmenuitem only.