pub trait IProfileCardCommentListMenuMethods: IProfileCardCommentListMenu {
// Provided methods
fn ctor(
self,
menu_item_list: impl Into<List_1<BasicMenuItem>>,
menu_content: impl Into<BasicMenuContent>,
my_profile_card_temp: impl Into<ProfileCard>,
initial_category: impl Into<ProfileCardCommentData_Categories>,
initial_decided_index: impl Into<i32>,
initial_comment_data: impl Into<ProfileCardCommentData>,
select_event_handler: impl Into<ProfileCardCommentListMenu_SelectEventHandler>,
decide_event_handler: impl Into<ProfileCardCommentListMenu_DecideEventHandler>,
cancel_event_handler: impl Into<ProfileCardCommentListMenu_CancelEventHandler>,
dispose_event_handler: impl Into<ProfileCardCommentListMenu_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_decided(
self,
menu_item_index: impl Into<i32>,
initial: impl Into<bool>,
) -> bool { ... }
fn update_content(self) { ... }
fn key_left(self, is_trigger: impl Into<bool>) { ... }
fn key_right(self, is_trigger: impl Into<bool>) { ... }
fn b_call(self) -> BasicMenu_Result { ... }
fn custom_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>,
my_profile_card_temp: impl Into<ProfileCard>,
initial_category: impl Into<ProfileCardCommentData_Categories>,
initial_decided_index: impl Into<i32>,
initial_comment_data: impl Into<ProfileCardCommentData>,
select_event_handler: impl Into<ProfileCardCommentListMenu_SelectEventHandler>,
decide_event_handler: impl Into<ProfileCardCommentListMenu_DecideEventHandler>,
cancel_event_handler: impl Into<ProfileCardCommentListMenu_CancelEventHandler>,
dispose_event_handler: impl Into<ProfileCardCommentListMenu_DisposeEventHandler>,
)
fn ctor( self, menu_item_list: impl Into<List_1<BasicMenuItem>>, menu_content: impl Into<BasicMenuContent>, my_profile_card_temp: impl Into<ProfileCard>, initial_category: impl Into<ProfileCardCommentData_Categories>, initial_decided_index: impl Into<i32>, initial_comment_data: impl Into<ProfileCardCommentData>, select_event_handler: impl Into<ProfileCardCommentListMenu_SelectEventHandler>, decide_event_handler: impl Into<ProfileCardCommentListMenu_DecideEventHandler>, cancel_event_handler: impl Into<ProfileCardCommentListMenu_CancelEventHandler>, dispose_event_handler: impl Into<ProfileCardCommentListMenu_DisposeEventHandler>, )
.ctor(crate::system::collections::generic::list_1::List_1<crate::app::basicmenuitem::BasicMenuItem>, crate::app::basicmenucontent::BasicMenuContent, crate::app::profilecard::ProfileCard, crate::app::profilecardcommentdata::ProfileCardCommentData_Categories, i32, crate::app::profilecardcommentdata::ProfileCardCommentData, crate::app::profilecardcommentlistmenu::ProfileCardCommentListMenu_SelectEventHandler, crate::app::profilecardcommentlistmenu::ProfileCardCommentListMenu_DecideEventHandler, crate::app::profilecardcommentlistmenu::ProfileCardCommentListMenu_CancelEventHandler, crate::app::profilecardcommentlistmenu::ProfileCardCommentListMenu_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_decided(
self,
menu_item_index: impl Into<i32>,
initial: impl Into<bool>,
) -> bool
fn update_decided( self, menu_item_index: impl Into<i32>, initial: impl Into<bool>, ) -> bool
UpdateDecided(i32, bool) 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 custom_call(self) -> BasicMenu_Result
fn custom_call(self) -> BasicMenu_Result
CustomCall() 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: IProfileCardCommentListMenu> IProfileCardCommentListMenuMethods for __T
app-profilecardcommentlistmenu only.