pub trait IInvestmentMenu_InvestmentMenuItemMethods: IInvestmentMenu_InvestmentMenuItem {
// Provided methods
fn ctor(self, index: impl Into<i32>) { ... }
fn build_attribute(self) -> BasicMenuItem_Attribute { ... }
fn get_name(self) -> Il2CppString { ... }
fn on_select(self) { ... }
fn a_call(self) -> BasicMenu_Result { ... }
fn x_call(self) -> BasicMenu_Result { ... }
fn get_nation_data(self) -> HubNationData { ... }
fn get_next_cost(self) -> i32 { ... }
fn add(self, add_cost: impl Into<i32>) { ... }
}Provided Methods§
Sourcefn build_attribute(self) -> BasicMenuItem_Attribute
fn build_attribute(self) -> BasicMenuItem_Attribute
BuildAttribute() overload
Sourcefn get_name(self) -> Il2CppString
fn get_name(self) -> Il2CppString
GetName() overload
Sourcefn a_call(self) -> BasicMenu_Result
fn a_call(self) -> BasicMenu_Result
ACall() overload
Sourcefn x_call(self) -> BasicMenu_Result
fn x_call(self) -> BasicMenu_Result
XCall() overload
Sourcefn get_nation_data(self) -> HubNationData
fn get_nation_data(self) -> HubNationData
GetNationData() overload
Sourcefn get_next_cost(self) -> i32
fn get_next_cost(self) -> i32
GetNextCost() 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: IInvestmentMenu_InvestmentMenuItem> IInvestmentMenu_InvestmentMenuItemMethods for __T
Available on crate feature
app-investmentmenu only.