pub trait IItemShopBuyMenuMethods: IItemShopBuyMenu {
// Provided methods
fn ctor(
self,
menu_item_list: impl Into<List_1<BasicMenuItem>>,
menu_content: impl Into<ItemShopBuyMenuContent>,
shop_content_array: impl Into<Array<ShopContent>>,
unit: impl Into<Unit>,
select_event_handler: impl Into<ItemShopBuyMenu_SelectEventHandler>,
decide_event_handler: impl Into<ItemShopBuyMenu_DecideEventHandler>,
request_close_menu_event_handler: impl Into<ItemShopBuyMenu_RequestCloseEventHandler>,
change_unit_to_prev_event_handler: impl Into<ItemShopBuyMenu_ChangeUnitToPrevEventHandler>,
change_unit_to_next_event_handler: impl Into<ItemShopBuyMenu_ChangeUnitToNextEventHandler>,
switch_detail_display_way_event_handler: impl Into<ItemShopBuyMenu_SwitchDetailDisplaywayEventHandler>,
) { ... }
fn rebuild_menu(
self,
unit: impl Into<Unit>,
keep_select: impl Into<bool>,
setup_shopdata: impl Into<bool>,
) { ... }
fn rebuild_menu_2(
self,
keep_select: impl Into<bool>,
setup_shopdata: impl Into<bool>,
) { ... }
fn rebuild_menu_for_flea_market(
self,
unit: impl Into<Unit>,
keep_select: impl Into<bool>,
setup_shopdata: impl Into<bool>,
) { ... }
fn rebuild_menu_for_flea_market_2(
self,
keep_select: impl Into<bool>,
setup_shopdata: impl Into<bool>,
) { ... }
fn get_name(self) -> Il2CppString { ... }
fn b_call(self) -> BasicMenu_Result { ... }
fn x_call(self) -> BasicMenu_Result { ... }
fn on_done_to_buy(self) { ... }
fn on_done_to_buy_for_flea_market(self) { ... }
fn update_item_detail_messages(self, item_data: impl Into<ItemData>) { ... }
}Provided Methods§
Sourcefn ctor(
self,
menu_item_list: impl Into<List_1<BasicMenuItem>>,
menu_content: impl Into<ItemShopBuyMenuContent>,
shop_content_array: impl Into<Array<ShopContent>>,
unit: impl Into<Unit>,
select_event_handler: impl Into<ItemShopBuyMenu_SelectEventHandler>,
decide_event_handler: impl Into<ItemShopBuyMenu_DecideEventHandler>,
request_close_menu_event_handler: impl Into<ItemShopBuyMenu_RequestCloseEventHandler>,
change_unit_to_prev_event_handler: impl Into<ItemShopBuyMenu_ChangeUnitToPrevEventHandler>,
change_unit_to_next_event_handler: impl Into<ItemShopBuyMenu_ChangeUnitToNextEventHandler>,
switch_detail_display_way_event_handler: impl Into<ItemShopBuyMenu_SwitchDetailDisplaywayEventHandler>,
)
fn ctor( self, menu_item_list: impl Into<List_1<BasicMenuItem>>, menu_content: impl Into<ItemShopBuyMenuContent>, shop_content_array: impl Into<Array<ShopContent>>, unit: impl Into<Unit>, select_event_handler: impl Into<ItemShopBuyMenu_SelectEventHandler>, decide_event_handler: impl Into<ItemShopBuyMenu_DecideEventHandler>, request_close_menu_event_handler: impl Into<ItemShopBuyMenu_RequestCloseEventHandler>, change_unit_to_prev_event_handler: impl Into<ItemShopBuyMenu_ChangeUnitToPrevEventHandler>, change_unit_to_next_event_handler: impl Into<ItemShopBuyMenu_ChangeUnitToNextEventHandler>, switch_detail_display_way_event_handler: impl Into<ItemShopBuyMenu_SwitchDetailDisplaywayEventHandler>, )
.ctor(crate::system::collections::generic::list_1::List_1<crate::app::basicmenuitem::BasicMenuItem>, crate::app::itemshopbuymenucontent::ItemShopBuyMenuContent, ::unity::Array<crate::app::shopcontent::ShopContent>, crate::app::unit::Unit, crate::app::itemshopbuymenu::ItemShopBuyMenu_SelectEventHandler, crate::app::itemshopbuymenu::ItemShopBuyMenu_DecideEventHandler, crate::app::itemshopbuymenu::ItemShopBuyMenu_RequestCloseEventHandler, crate::app::itemshopbuymenu::ItemShopBuyMenu_ChangeUnitToPrevEventHandler, crate::app::itemshopbuymenu::ItemShopBuyMenu_ChangeUnitToNextEventHandler, crate::app::itemshopbuymenu::ItemShopBuyMenu_SwitchDetailDisplaywayEventHandler) overload
RebuildMenu(crate::app::unit::Unit, bool, bool) overload
RebuildMenu(bool, bool) overload
RebuildMenuForFleaMarket(crate::app::unit::Unit, bool, bool) overload
RebuildMenuForFleaMarket(bool, bool) 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
Sourcefn x_call(self) -> BasicMenu_Result
fn x_call(self) -> BasicMenu_Result
XCall() overload
Sourcefn on_done_to_buy(self)
fn on_done_to_buy(self)
OnDoneToBuy() overload
Sourcefn on_done_to_buy_for_flea_market(self)
fn on_done_to_buy_for_flea_market(self)
OnDoneToBuyForFleaMarket() overload
Sourcefn update_item_detail_messages(self, item_data: impl Into<ItemData>)
fn update_item_detail_messages(self, item_data: impl Into<ItemData>)
UpdateItemDetailMessages(crate::app::itemdata::ItemData) 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: IItemShopBuyMenu> IItemShopBuyMenuMethods for __T
app-itemshopbuymenu only.