pub trait IRefineShopRefineBaseMenuMethods: IRefineShopRefineBaseMenu {
// Provided methods
fn get_m_kind(self) -> ItemData_Kinds { ... }
fn set_m_kind(self, value: impl Into<ItemData_Kinds>) { ... }
fn ctor(
self,
menu_item_list: impl Into<List_1<BasicMenuItem>>,
menu_content: impl Into<RefineShopRefineBaseMenuContent>,
default_unit: impl Into<Unit>,
default_item_index: impl Into<i32>,
kind: impl Into<ItemData_Kinds>,
select_event_handler: impl Into<RefineShopRefineBaseMenu_SelectEventHandler>,
decide_event_handler: impl Into<RefineShopRefineBaseMenu_DecideEventHandler>,
request_close_event_handler: impl Into<RefineShopRefineBaseMenu_RequestCloseEventHandler>,
) { ... }
fn rebuild_menu(self) { ... }
fn rebuild_menu_item(self) { ... }
fn get_name(self) -> Il2CppString { ... }
fn key_left(self, is_trigger: impl Into<bool>) { ... }
fn key_right(self, is_trigger: impl Into<bool>) { ... }
fn b_call(self) -> BasicMenu_Result { ... }
}Provided Methods§
Sourcefn get_m_kind(self) -> ItemData_Kinds
fn get_m_kind(self) -> ItemData_Kinds
get_m_Kind() overload
Sourcefn set_m_kind(self, value: impl Into<ItemData_Kinds>)
fn set_m_kind(self, value: impl Into<ItemData_Kinds>)
set_m_Kind(crate::app::itemdata::ItemData_Kinds) overload
Sourcefn ctor(
self,
menu_item_list: impl Into<List_1<BasicMenuItem>>,
menu_content: impl Into<RefineShopRefineBaseMenuContent>,
default_unit: impl Into<Unit>,
default_item_index: impl Into<i32>,
kind: impl Into<ItemData_Kinds>,
select_event_handler: impl Into<RefineShopRefineBaseMenu_SelectEventHandler>,
decide_event_handler: impl Into<RefineShopRefineBaseMenu_DecideEventHandler>,
request_close_event_handler: impl Into<RefineShopRefineBaseMenu_RequestCloseEventHandler>,
)
fn ctor( self, menu_item_list: impl Into<List_1<BasicMenuItem>>, menu_content: impl Into<RefineShopRefineBaseMenuContent>, default_unit: impl Into<Unit>, default_item_index: impl Into<i32>, kind: impl Into<ItemData_Kinds>, select_event_handler: impl Into<RefineShopRefineBaseMenu_SelectEventHandler>, decide_event_handler: impl Into<RefineShopRefineBaseMenu_DecideEventHandler>, request_close_event_handler: impl Into<RefineShopRefineBaseMenu_RequestCloseEventHandler>, )
.ctor(crate::system::collections::generic::list_1::List_1<crate::app::basicmenuitem::BasicMenuItem>, crate::app::refineshoprefinebasemenucontent::RefineShopRefineBaseMenuContent, crate::app::unit::Unit, i32, crate::app::itemdata::ItemData_Kinds, crate::app::refineshoprefinebasemenu::RefineShopRefineBaseMenu_SelectEventHandler, crate::app::refineshoprefinebasemenu::RefineShopRefineBaseMenu_DecideEventHandler, crate::app::refineshoprefinebasemenu::RefineShopRefineBaseMenu_RequestCloseEventHandler) overload
RebuildMenu() overload
RebuildMenuItem() overload
Sourcefn get_name(self) -> Il2CppString
fn get_name(self) -> Il2CppString
GetName() overload
Sourcefn b_call(self) -> BasicMenu_Result
fn b_call(self) -> BasicMenu_Result
BCall() 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: IRefineShopRefineBaseMenu> IRefineShopRefineBaseMenuMethods for __T
app-refineshoprefinebasemenu only.