Skip to main content

IProfileCardMyCardMenuMethods

Trait IProfileCardMyCardMenuMethods 

Source
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§

Source

fn create_desc(self) -> Array<ProcDesc>

CreateDesc() overload

Source

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

Source

fn after_build(self)

AfterBuild() overload

Source

fn get_name(self) -> Il2CppString

GetName() overload

Source

fn open_anime(self)

OpenAnime() overload

Source

fn tick(self)

Tick() overload

Source

fn tick_input(self) -> bool

TickInput() overload

Source

fn is_switching_pages(self) -> bool

IsSwitchingPages() overload

Source

fn close(self)

Close() overload

Source

fn is_closing(self) -> bool

IsClosing() overload

Source

fn is_closed(self) -> bool

IsClosed() overload

Source

fn a_call(self) -> BasicMenu_Result

ACall() overload

Source

fn b_call(self) -> BasicMenu_Result

BCall() overload

Source

fn x_call(self) -> BasicMenu_Result

XCall() overload

Source

fn l_call(self) -> BasicMenu_Result

LCall() overload

Source

fn r_call(self) -> BasicMenu_Result

RCall() overload

Source

fn on_close(self)

OnClose() overload

Source

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§

Source§

impl<__T: IProfileCardMyCardMenu> IProfileCardMyCardMenuMethods for __T

Available on crate feature app-profilecardmycardmenu only.