pub trait IAccessoryShopBuyMenuMethods: IAccessoryShopBuyMenu {
Show 14 methods
// Provided methods
fn ctor(
self,
menu_item_list: impl Into<List_1<BasicMenuItem>>,
menu_content: impl Into<AccessoryShopBuyMenuContent>,
accessory_shop_content_array: impl Into<Array<AccessoryShopContent>>,
select_event_handler: impl Into<AccessoryShopBuyMenu_SelectEventHandler>,
decide_event_handler: impl Into<AccessoryShopBuyMenu_DecideEventHandler>,
request_close_event_handler: impl Into<AccessoryShopBuyMenu_RequestCloseEventHandler>,
change_kind_event_handler: impl Into<AccessoryShopBuyMenu_ChangeKindEventHandler>,
) { ... }
fn rebuild_menu(self, setup_shopdata: impl Into<bool>) { ... }
fn rebuild_menu_item(self) { ... }
fn get_name(self) -> Il2CppString { ... }
fn enable_menu(self) { ... }
fn disable_menu(self) { ... }
fn show(self) { ... }
fn hide(self) { ... }
fn get_select(self) -> BasicMenuSelect { ... }
fn get_current_accessory_kind(self) -> AccessoryData_Kinds { ... }
fn key_left(self, is_trigger: impl Into<bool>) { ... }
fn key_right(self, is_trigger: impl Into<bool>) { ... }
fn on_done_to_buy(self) { ... }
fn b_call(self) -> BasicMenu_Result { ... }
}Provided Methods§
Sourcefn ctor(
self,
menu_item_list: impl Into<List_1<BasicMenuItem>>,
menu_content: impl Into<AccessoryShopBuyMenuContent>,
accessory_shop_content_array: impl Into<Array<AccessoryShopContent>>,
select_event_handler: impl Into<AccessoryShopBuyMenu_SelectEventHandler>,
decide_event_handler: impl Into<AccessoryShopBuyMenu_DecideEventHandler>,
request_close_event_handler: impl Into<AccessoryShopBuyMenu_RequestCloseEventHandler>,
change_kind_event_handler: impl Into<AccessoryShopBuyMenu_ChangeKindEventHandler>,
)
fn ctor( self, menu_item_list: impl Into<List_1<BasicMenuItem>>, menu_content: impl Into<AccessoryShopBuyMenuContent>, accessory_shop_content_array: impl Into<Array<AccessoryShopContent>>, select_event_handler: impl Into<AccessoryShopBuyMenu_SelectEventHandler>, decide_event_handler: impl Into<AccessoryShopBuyMenu_DecideEventHandler>, request_close_event_handler: impl Into<AccessoryShopBuyMenu_RequestCloseEventHandler>, change_kind_event_handler: impl Into<AccessoryShopBuyMenu_ChangeKindEventHandler>, )
.ctor(crate::system::collections::generic::list_1::List_1<crate::app::basicmenuitem::BasicMenuItem>, crate::app::accessoryshopbuymenucontent::AccessoryShopBuyMenuContent, ::unity::Array<crate::app::accessoryshopcontent::AccessoryShopContent>, crate::app::accessoryshopbuymenu::AccessoryShopBuyMenu_SelectEventHandler, crate::app::accessoryshopbuymenu::AccessoryShopBuyMenu_DecideEventHandler, crate::app::accessoryshopbuymenu::AccessoryShopBuyMenu_RequestCloseEventHandler, crate::app::accessoryshopbuymenu::AccessoryShopBuyMenu_ChangeKindEventHandler) overload
RebuildMenu(bool) overload
RebuildMenuItem() overload
Sourcefn get_name(self) -> Il2CppString
fn get_name(self) -> Il2CppString
GetName() overload
EnableMenu() overload
DisableMenu() overload
Sourcefn get_select(self) -> BasicMenuSelect
fn get_select(self) -> BasicMenuSelect
GetSelect() overload
Sourcefn get_current_accessory_kind(self) -> AccessoryData_Kinds
fn get_current_accessory_kind(self) -> AccessoryData_Kinds
GetCurrentAccessoryKind() overload
Sourcefn on_done_to_buy(self)
fn on_done_to_buy(self)
OnDoneToBuy() 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: IAccessoryShopBuyMenu> IAccessoryShopBuyMenuMethods for __T
app-accessoryshopbuymenu only.