pub trait IProfileCardStampListMenuMethods: IProfileCardStampListMenu {
// Provided methods
fn ctor(
self,
menu_item_list: impl Into<List_1<BasicMenuItem>>,
menu_content: impl Into<GridMenuContent>,
initial_category: impl Into<ProfileCardStampData_Categories>,
initial_selected_index: impl Into<i32>,
decide_event_handler: impl Into<ProfileCardStampListMenu_DecideEventHandler>,
close_event_handler: impl Into<ProfileCardStampListMenu_CloseEventHandler>,
dispose_event_handler: impl Into<ProfileCardStampListMenu_DisposeEventHandler>,
) { ... }
fn on_build(self, is_first_build: impl Into<bool>) { ... }
fn rebuild_menu(self) { ... }
fn get_name(self) -> Il2CppString { ... }
fn get_select(self) -> BasicMenuSelect { ... }
fn update_content(self) { ... }
fn custom_call(self) -> BasicMenu_Result { ... }
fn l_repeat_call(self, is_trigger: impl Into<bool>) -> BasicMenu_Result { ... }
fn r_repeat_call(self, is_trigger: impl Into<bool>) -> BasicMenu_Result { ... }
fn on_close(self) { ... }
fn on_dispose(self) { ... }
}Provided Methods§
Sourcefn ctor(
self,
menu_item_list: impl Into<List_1<BasicMenuItem>>,
menu_content: impl Into<GridMenuContent>,
initial_category: impl Into<ProfileCardStampData_Categories>,
initial_selected_index: impl Into<i32>,
decide_event_handler: impl Into<ProfileCardStampListMenu_DecideEventHandler>,
close_event_handler: impl Into<ProfileCardStampListMenu_CloseEventHandler>,
dispose_event_handler: impl Into<ProfileCardStampListMenu_DisposeEventHandler>,
)
fn ctor( self, menu_item_list: impl Into<List_1<BasicMenuItem>>, menu_content: impl Into<GridMenuContent>, initial_category: impl Into<ProfileCardStampData_Categories>, initial_selected_index: impl Into<i32>, decide_event_handler: impl Into<ProfileCardStampListMenu_DecideEventHandler>, close_event_handler: impl Into<ProfileCardStampListMenu_CloseEventHandler>, dispose_event_handler: impl Into<ProfileCardStampListMenu_DisposeEventHandler>, )
.ctor(crate::system::collections::generic::list_1::List_1<crate::app::basicmenuitem::BasicMenuItem>, crate::app::gridmenucontent::GridMenuContent, crate::app::profilecardstampdata::ProfileCardStampData_Categories, i32, crate::app::profilecardstamplistmenu::ProfileCardStampListMenu_DecideEventHandler, crate::app::profilecardstamplistmenu::ProfileCardStampListMenu_CloseEventHandler, crate::app::profilecardstamplistmenu::ProfileCardStampListMenu_DisposeEventHandler) overload
RebuildMenu() overload
Sourcefn get_name(self) -> Il2CppString
fn get_name(self) -> Il2CppString
GetName() overload
Sourcefn get_select(self) -> BasicMenuSelect
fn get_select(self) -> BasicMenuSelect
GetSelect() overload
Sourcefn update_content(self)
fn update_content(self)
UpdateContent() overload
Sourcefn custom_call(self) -> BasicMenu_Result
fn custom_call(self) -> BasicMenu_Result
CustomCall() overload
Sourcefn l_repeat_call(self, is_trigger: impl Into<bool>) -> BasicMenu_Result
fn l_repeat_call(self, is_trigger: impl Into<bool>) -> BasicMenu_Result
LRepeatCall(bool) overload
Sourcefn r_repeat_call(self, is_trigger: impl Into<bool>) -> BasicMenu_Result
fn r_repeat_call(self, is_trigger: impl Into<bool>) -> BasicMenu_Result
RRepeatCall(bool) 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: IProfileCardStampListMenu> IProfileCardStampListMenuMethods for __T
app-profilecardstamplistmenu only.