pub trait IChallengeMapSelectMenuItemMethods: IChallengeMapSelectMenuItem {
// Provided methods
fn is_new(self) -> bool { ... }
fn saw_new_access(self) { ... }
fn ctor(
self,
challenge_data: impl Into<ChallengeData>,
select_event_handler: impl Into<ChallengeMapSelectMenu_SelectEventHandler>,
decide_event_handler: impl Into<ChallengeMapSelectMenu_DecideEventHandler>,
request_close_event_handler: impl Into<ChallengeMapSelectMenu_RequestCloseEventHandler>,
) { ... }
fn get_name(self) -> Il2CppString { ... }
fn build_attribute(self) -> BasicMenuItem_Attribute { ... }
fn on_build(self) { ... }
fn on_build_menu_item_content(self) { ... }
fn set_initial_color(self) { ... }
fn on_select(self) { ... }
fn a_call(self) -> BasicMenu_Result { ... }
fn b_call(self) -> BasicMenu_Result { ... }
}Provided Methods§
Sourcefn saw_new_access(self)
fn saw_new_access(self)
SawNewAccess() overload
Sourcefn ctor(
self,
challenge_data: impl Into<ChallengeData>,
select_event_handler: impl Into<ChallengeMapSelectMenu_SelectEventHandler>,
decide_event_handler: impl Into<ChallengeMapSelectMenu_DecideEventHandler>,
request_close_event_handler: impl Into<ChallengeMapSelectMenu_RequestCloseEventHandler>,
)
fn ctor( self, challenge_data: impl Into<ChallengeData>, select_event_handler: impl Into<ChallengeMapSelectMenu_SelectEventHandler>, decide_event_handler: impl Into<ChallengeMapSelectMenu_DecideEventHandler>, request_close_event_handler: impl Into<ChallengeMapSelectMenu_RequestCloseEventHandler>, )
.ctor(crate::app::challengedata::ChallengeData, crate::app::challengemapselectmenu::ChallengeMapSelectMenu_SelectEventHandler, crate::app::challengemapselectmenu::ChallengeMapSelectMenu_DecideEventHandler, crate::app::challengemapselectmenu::ChallengeMapSelectMenu_RequestCloseEventHandler) overload
Sourcefn get_name(self) -> Il2CppString
fn get_name(self) -> Il2CppString
GetName() overload
Sourcefn build_attribute(self) -> BasicMenuItem_Attribute
fn build_attribute(self) -> BasicMenuItem_Attribute
BuildAttribute() overload
OnBuildMenuItemContent() overload
Sourcefn set_initial_color(self)
fn set_initial_color(self)
SetInitialColor() 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
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: IChallengeMapSelectMenuItem> IChallengeMapSelectMenuItemMethods for __T
Available on crate feature
app-challengemapselectmenuitem only.