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§
Sourcefn get_m_unit(self) -> Unit
fn get_m_unit(self) -> Unit
get_m_Unit() overload
Sourcefn set_m_unit(self, value: impl Into<Unit>)
fn set_m_unit(self, value: impl Into<Unit>)
set_m_Unit(crate::app::unit::Unit) overload
Sourcefn get_m_item_index(self) -> i32
fn get_m_item_index(self) -> i32
get_m_ItemIndex() overload
Sourcefn set_m_item_index(self, value: impl Into<i32>)
fn set_m_item_index(self, value: impl Into<i32>)
set_m_ItemIndex(i32) overload
Sourcefn get_m_unit_item(self) -> UnitItem
fn get_m_unit_item(self) -> UnitItem
get_m_UnitItem() overload
Sourcefn set_m_unit_item(self, value: impl Into<UnitItem>)
fn set_m_unit_item(self, value: impl Into<UnitItem>)
set_m_UnitItem(crate::app::unititem::UnitItem) overload
Sourcefn get_m_sort_value(self) -> i64
fn get_m_sort_value(self) -> i64
get_m_SortValue() overload
Sourcefn set_m_sort_value(self, value: impl Into<i64>)
fn set_m_sort_value(self, value: impl Into<i64>)
set_m_SortValue(i64) overload
Sourcefn 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 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
Sourcefn get_name(self) -> Il2CppString
fn get_name(self) -> Il2CppString
GetName() overload
Sourcefn build_attribute(self) -> BasicMenuItem_Attribute
fn build_attribute(self) -> BasicMenuItem_Attribute
BuildAttribute() overload
Sourcefn get_unit_item(self) -> UnitItem
fn get_unit_item(self) -> UnitItem
GetUnitItem() overload
Sourcefn a_call(self) -> BasicMenu_Result
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§
impl<__T: IRefineShopRefineBaseMenuItem> IRefineShopRefineBaseMenuItemMethods for __T
Available on crate feature
app-refineshoprefinebasemenuitem only.