Skip to main content

IRefineShopRefineBaseMenuMethods

Trait IRefineShopRefineBaseMenuMethods 

Source
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§

Source

fn get_m_kind(self) -> ItemData_Kinds

get_m_Kind() overload

Source

fn set_m_kind(self, value: impl Into<ItemData_Kinds>)

set_m_Kind(crate::app::itemdata::ItemData_Kinds) overload

Source

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

Source

fn rebuild_menu(self)

RebuildMenu() overload

Source

fn rebuild_menu_item(self)

RebuildMenuItem() overload

Source

fn get_name(self) -> Il2CppString

GetName() overload

Source

fn key_left(self, is_trigger: impl Into<bool>)

KeyLeft(bool) overload

Source

fn key_right(self, is_trigger: impl Into<bool>)

KeyRight(bool) overload

Source

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§

Source§

impl<__T: IRefineShopRefineBaseMenu> IRefineShopRefineBaseMenuMethods for __T

Available on crate feature app-refineshoprefinebasemenu only.