pub trait IProfileCardCommentIndexMenuMethods: IProfileCardCommentIndexMenu {
// Provided methods
fn ctor(
self,
menu_item_list: impl Into<List_1<BasicMenuItem>>,
menu_content: impl Into<BasicMenuContent>,
initial_index: impl Into<i32>,
decide_event_handler: impl Into<ProfileCardCommentIndexMenu_DecideEventHandler>,
dispose_event_handler: impl Into<ProfileCardCommentIndexMenu_DisposeEventHandler>,
) { ... }
fn get_name(self) -> Il2CppString { ... }
fn set_menu_item_mid(
self,
menu_item_index: impl Into<i32>,
mid: impl Into<Il2CppString>,
) { ... }
fn update_content(self) { ... }
fn b_call(self) -> BasicMenu_Result { ... }
fn on_dispose(self) { ... }
}Provided Methods§
Sourcefn ctor(
self,
menu_item_list: impl Into<List_1<BasicMenuItem>>,
menu_content: impl Into<BasicMenuContent>,
initial_index: impl Into<i32>,
decide_event_handler: impl Into<ProfileCardCommentIndexMenu_DecideEventHandler>,
dispose_event_handler: impl Into<ProfileCardCommentIndexMenu_DisposeEventHandler>,
)
fn ctor( self, menu_item_list: impl Into<List_1<BasicMenuItem>>, menu_content: impl Into<BasicMenuContent>, initial_index: impl Into<i32>, decide_event_handler: impl Into<ProfileCardCommentIndexMenu_DecideEventHandler>, dispose_event_handler: impl Into<ProfileCardCommentIndexMenu_DisposeEventHandler>, )
.ctor(crate::system::collections::generic::list_1::List_1<crate::app::basicmenuitem::BasicMenuItem>, crate::app::basicmenucontent::BasicMenuContent, i32, crate::app::profilecardcommentindexmenu::ProfileCardCommentIndexMenu_DecideEventHandler, crate::app::profilecardcommentindexmenu::ProfileCardCommentIndexMenu_DisposeEventHandler) overload
Sourcefn get_name(self) -> Il2CppString
fn get_name(self) -> Il2CppString
GetName() overload
SetMenuItemMid(i32, ::unity::Il2CppString) overload
Sourcefn update_content(self)
fn update_content(self)
UpdateContent() 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: IProfileCardCommentIndexMenu> IProfileCardCommentIndexMenuMethods for __T
Available on crate feature
app-profilecardcommentindexmenu only.