Skip to main content

IRefineShopRefineBaseMenuItemMethods

Trait IRefineShopRefineBaseMenuItemMethods 

Source
pub trait IRefineShopRefineBaseMenuItemMethods: IRefineShopRefineBaseMenuItem {
Show 15 methods // Provided methods fn get_m_unit(self) -> Unit { ... } fn set_m_unit(self, value: impl Into<Unit>) { ... } fn get_m_item_index(self) -> i32 { ... } fn set_m_item_index(self, value: impl Into<i32>) { ... } fn get_m_unit_item(self) -> UnitItem { ... } fn set_m_unit_item(self, value: impl Into<UnitItem>) { ... } fn get_m_sort_value(self) -> i64 { ... } fn set_m_sort_value(self, value: impl Into<i64>) { ... } fn ctor( self, unit: impl Into<Unit>, item_index: impl Into<i32>, select_event_handler: impl Into<RefineShopRefineBaseMenu_SelectEventHandler>, decide_event_handler: impl Into<RefineShopRefineBaseMenu_DecideEventHandler>, ) { ... } fn get_name(self) -> Il2CppString { ... } fn build_attribute(self) -> BasicMenuItem_Attribute { ... } fn get_unit_item(self) -> UnitItem { ... } fn get_unit(self) -> Unit { ... } fn on_select(self) { ... } fn a_call(self) -> BasicMenu_Result { ... }
}

Provided Methods§

Source

fn get_m_unit(self) -> Unit

get_m_Unit() overload

Source

fn set_m_unit(self, value: impl Into<Unit>)

set_m_Unit(crate::app::unit::Unit) overload

Source

fn get_m_item_index(self) -> i32

get_m_ItemIndex() overload

Source

fn set_m_item_index(self, value: impl Into<i32>)

set_m_ItemIndex(i32) overload

Source

fn get_m_unit_item(self) -> UnitItem

get_m_UnitItem() overload

Source

fn set_m_unit_item(self, value: impl Into<UnitItem>)

set_m_UnitItem(crate::app::unititem::UnitItem) overload

Source

fn get_m_sort_value(self) -> i64

get_m_SortValue() overload

Source

fn set_m_sort_value(self, value: impl Into<i64>)

set_m_SortValue(i64) overload

Source

fn ctor( self, unit: impl Into<Unit>, item_index: impl Into<i32>, select_event_handler: impl Into<RefineShopRefineBaseMenu_SelectEventHandler>, decide_event_handler: impl Into<RefineShopRefineBaseMenu_DecideEventHandler>, )

.ctor(crate::app::unit::Unit, i32, crate::app::refineshoprefinebasemenu::RefineShopRefineBaseMenu_SelectEventHandler, crate::app::refineshoprefinebasemenu::RefineShopRefineBaseMenu_DecideEventHandler) overload

Source

fn get_name(self) -> Il2CppString

GetName() overload

Source

fn build_attribute(self) -> BasicMenuItem_Attribute

BuildAttribute() overload

Source

fn get_unit_item(self) -> UnitItem

GetUnitItem() overload

Source

fn get_unit(self) -> Unit

GetUnit() overload

Source

fn on_select(self)

OnSelect() overload

Source

fn a_call(self) -> BasicMenu_Result

ACall() 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: IRefineShopRefineBaseMenuItem> IRefineShopRefineBaseMenuItemMethods for __T

Available on crate feature app-refineshoprefinebasemenuitem only.