Skip to main content

IProfileCardStampListMenuMethods

Trait IProfileCardStampListMenuMethods 

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

Source

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

Source

fn on_build(self, is_first_build: impl Into<bool>)

OnBuild(bool) overload

Source

fn rebuild_menu(self)

RebuildMenu() overload

Source

fn get_name(self) -> Il2CppString

GetName() overload

Source

fn get_select(self) -> BasicMenuSelect

GetSelect() overload

Source

fn update_content(self)

UpdateContent() overload

Source

fn custom_call(self) -> BasicMenu_Result

CustomCall() overload

Source

fn l_repeat_call(self, is_trigger: impl Into<bool>) -> BasicMenu_Result

LRepeatCall(bool) overload

Source

fn r_repeat_call(self, is_trigger: impl Into<bool>) -> BasicMenu_Result

RRepeatCall(bool) 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: IProfileCardStampListMenu> IProfileCardStampListMenuMethods for __T

Available on crate feature app-profilecardstamplistmenu only.