pub trait IProfileCardMyCardMenuMethods: IProfileCardMyCardMenu {
Show 18 methods
// Provided methods
fn create_desc(self) -> Array<ProcDesc> { ... }
fn ctor(
self,
menu_root: impl Into<ProfileCardRoot>,
my_profile_card_temp: impl Into<ProfileCard>,
needed_update_card_on_build: impl Into<bool>,
decide_event_handler: impl Into<ProfileCardMyCardMenu_DecideEventHandler>,
) { ... }
fn after_build(self) { ... }
fn get_name(self) -> Il2CppString { ... }
fn open_anime(self) { ... }
fn tick(self) { ... }
fn tick_input(self) -> bool { ... }
fn is_switching_pages(self) -> bool { ... }
fn close(self) { ... }
fn is_closing(self) -> bool { ... }
fn is_closed(self) -> bool { ... }
fn a_call(self) -> BasicMenu_Result { ... }
fn b_call(self) -> BasicMenu_Result { ... }
fn x_call(self) -> BasicMenu_Result { ... }
fn l_call(self) -> BasicMenu_Result { ... }
fn r_call(self) -> BasicMenu_Result { ... }
fn on_close(self) { ... }
fn on_dispose(self) { ... }
}Provided Methods§
Sourcefn create_desc(self) -> Array<ProcDesc>
fn create_desc(self) -> Array<ProcDesc>
CreateDesc() overload
Sourcefn ctor(
self,
menu_root: impl Into<ProfileCardRoot>,
my_profile_card_temp: impl Into<ProfileCard>,
needed_update_card_on_build: impl Into<bool>,
decide_event_handler: impl Into<ProfileCardMyCardMenu_DecideEventHandler>,
)
fn ctor( self, menu_root: impl Into<ProfileCardRoot>, my_profile_card_temp: impl Into<ProfileCard>, needed_update_card_on_build: impl Into<bool>, decide_event_handler: impl Into<ProfileCardMyCardMenu_DecideEventHandler>, )
.ctor(crate::app::profilecardroot::ProfileCardRoot, crate::app::profilecard::ProfileCard, bool, crate::app::profilecardmycardmenu::ProfileCardMyCardMenu_DecideEventHandler) overload
Sourcefn after_build(self)
fn after_build(self)
AfterBuild() overload
Sourcefn get_name(self) -> Il2CppString
fn get_name(self) -> Il2CppString
GetName() overload
Sourcefn open_anime(self)
fn open_anime(self)
OpenAnime() overload
Sourcefn tick_input(self) -> bool
fn tick_input(self) -> bool
TickInput() overload
Sourcefn is_switching_pages(self) -> bool
fn is_switching_pages(self) -> bool
IsSwitchingPages() overload
Sourcefn is_closing(self) -> bool
fn is_closing(self) -> bool
IsClosing() 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 x_call(self) -> BasicMenu_Result
fn x_call(self) -> BasicMenu_Result
XCall() overload
Sourcefn l_call(self) -> BasicMenu_Result
fn l_call(self) -> BasicMenu_Result
LCall() overload
Sourcefn r_call(self) -> BasicMenu_Result
fn r_call(self) -> BasicMenu_Result
RCall() overload
Sourcefn on_dispose(self)
fn on_dispose(self)
OnDispose() 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: IProfileCardMyCardMenu> IProfileCardMyCardMenuMethods for __T
Available on crate feature
app-profilecardmycardmenu only.