pub trait IProfileCardAlbumMenuMethods: IProfileCardAlbumMenu {
Show 19 methods
// Provided methods
fn create_desc(self) -> Array<ProcDesc> { ... }
fn ctor(
self,
card_root: impl Into<ProfileCardRoot>,
initial_profile_list_index: impl Into<i32>,
change_profile_event_handler: impl Into<ProfileCardAlbumMenu_ChangeProfileEventHandler>,
decide_event_handler: impl Into<ProfileCardAlbumMenu_DecideEventHandler>,
) { ... }
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 key_up(self, is_trigger: impl Into<bool>) { ... }
fn key_down(self, is_trigger: impl Into<bool>) { ... }
fn a_call(self) -> BasicMenu_Result { ... }
fn x_call(self) -> BasicMenu_Result { ... }
fn b_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,
card_root: impl Into<ProfileCardRoot>,
initial_profile_list_index: impl Into<i32>,
change_profile_event_handler: impl Into<ProfileCardAlbumMenu_ChangeProfileEventHandler>,
decide_event_handler: impl Into<ProfileCardAlbumMenu_DecideEventHandler>,
)
fn ctor( self, card_root: impl Into<ProfileCardRoot>, initial_profile_list_index: impl Into<i32>, change_profile_event_handler: impl Into<ProfileCardAlbumMenu_ChangeProfileEventHandler>, decide_event_handler: impl Into<ProfileCardAlbumMenu_DecideEventHandler>, )
.ctor(crate::app::profilecardroot::ProfileCardRoot, i32, crate::app::profilecardalbummenu::ProfileCardAlbumMenu_ChangeProfileEventHandler, crate::app::profilecardalbummenu::ProfileCardAlbumMenu_DecideEventHandler) 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 x_call(self) -> BasicMenu_Result
fn x_call(self) -> BasicMenu_Result
XCall() overload
Sourcefn b_call(self) -> BasicMenu_Result
fn b_call(self) -> BasicMenu_Result
BCall() 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: IProfileCardAlbumMenu> IProfileCardAlbumMenuMethods for __T
Available on crate feature
app-profilecardalbummenu only.