pub trait IProfileCardTopMenuMethods: IProfileCardTopMenu {
// Provided methods
fn ctor(
self,
menu_item_list: impl Into<List_1<BasicMenuItem>>,
menu_content: impl Into<BasicMenuContent>,
menu_root: impl Into<ProfileCardTopMenuRoot>,
initial_selected: impl Into<ProfileCardTopMenu_Result2>,
decide_event_handler: impl Into<ProfileCardTopMenu_DecideEventHandler>,
) { ... }
fn get_name(self) -> Il2CppString { ... }
fn update_info_window(
self,
caption_mid: impl Into<Il2CppString>,
description_mid: impl Into<Il2CppString>,
warning_mid: impl Into<Il2CppString>,
) { ... }
fn b_call(self) -> 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<BasicMenuContent>,
menu_root: impl Into<ProfileCardTopMenuRoot>,
initial_selected: impl Into<ProfileCardTopMenu_Result2>,
decide_event_handler: impl Into<ProfileCardTopMenu_DecideEventHandler>,
)
fn ctor( self, menu_item_list: impl Into<List_1<BasicMenuItem>>, menu_content: impl Into<BasicMenuContent>, menu_root: impl Into<ProfileCardTopMenuRoot>, initial_selected: impl Into<ProfileCardTopMenu_Result2>, decide_event_handler: impl Into<ProfileCardTopMenu_DecideEventHandler>, )
.ctor(crate::system::collections::generic::list_1::List_1<crate::app::basicmenuitem::BasicMenuItem>, crate::app::basicmenucontent::BasicMenuContent, crate::app::profilecardtopmenuroot::ProfileCardTopMenuRoot, crate::app::profilecardtopmenu::ProfileCardTopMenu_Result2, crate::app::profilecardtopmenu::ProfileCardTopMenu_DecideEventHandler) overload
Sourcefn get_name(self) -> Il2CppString
fn get_name(self) -> Il2CppString
GetName() overload
Sourcefn update_info_window(
self,
caption_mid: impl Into<Il2CppString>,
description_mid: impl Into<Il2CppString>,
warning_mid: impl Into<Il2CppString>,
)
fn update_info_window( self, caption_mid: impl Into<Il2CppString>, description_mid: impl Into<Il2CppString>, warning_mid: impl Into<Il2CppString>, )
UpdateInfoWindow(::unity::Il2CppString, ::unity::Il2CppString, ::unity::Il2CppString) overload
Sourcefn b_call(self) -> BasicMenu_Result
fn b_call(self) -> BasicMenu_Result
BCall() 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: IProfileCardTopMenu> IProfileCardTopMenuMethods for __T
Available on crate feature
app-profilecardtopmenu only.