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§
Sourcefn 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 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
Sourcefn build_attribute(self) -> BasicMenuItem_Attribute
fn build_attribute(self) -> BasicMenuItem_Attribute
BuildAttribute() overload
Sourcefn a_call(self) -> BasicMenu_Result
fn a_call(self) -> BasicMenu_Result
ACall() overload
Sourcefn b_call(self) -> BasicMenu_Result
fn b_call(self) -> BasicMenu_Result
BCall() overload
Sourcefn get_god_name(self) -> Il2CppString
fn get_god_name(self) -> Il2CppString
GetGodName() overload
Sourcefn get_optional_god_data(self) -> GodData
fn get_optional_god_data(self) -> GodData
GetOptionalGodData() overload
Sourcefn get_type(self) -> RingCleaningSequence_GodType
fn get_type(self) -> RingCleaningSequence_GodType
get_Type() overload
Sourcefn get_is_show_ring_icon(self) -> bool
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§
impl<__T: IGodUnitMenuItem> IGodUnitMenuItemMethods for __T
Available on crate feature
app-godunitmenuitem only.