pub trait IInvestmentMenuMethods: IInvestmentMenu {
// Provided methods
fn ctor(
self,
menu_item_list: impl Into<List_1<BasicMenuItem>>,
menu_content: impl Into<InvestmentMenuContent>,
) { ... }
fn get_name(self) -> Il2CppString { ... }
fn b_call(self) -> BasicMenu_Result { ... }
fn select_nation(self, index: impl Into<i32>) { ... }
fn update_nation(self, index: impl Into<i32>) { ... }
}Provided Methods§
Sourcefn ctor(
self,
menu_item_list: impl Into<List_1<BasicMenuItem>>,
menu_content: impl Into<InvestmentMenuContent>,
)
fn ctor( self, menu_item_list: impl Into<List_1<BasicMenuItem>>, menu_content: impl Into<InvestmentMenuContent>, )
.ctor(crate::system::collections::generic::list_1::List_1<crate::app::basicmenuitem::BasicMenuItem>, crate::app::investmentmenucontent::InvestmentMenuContent) overload
Sourcefn get_name(self) -> Il2CppString
fn get_name(self) -> Il2CppString
GetName() overload
Sourcefn b_call(self) -> BasicMenu_Result
fn b_call(self) -> BasicMenu_Result
BCall() overload
Sourcefn select_nation(self, index: impl Into<i32>)
fn select_nation(self, index: impl Into<i32>)
SelectNation(i32) overload
Sourcefn update_nation(self, index: impl Into<i32>)
fn update_nation(self, index: impl Into<i32>)
UpdateNation(i32) 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> IInvestmentMenuMethods for __T
Available on crate feature
app-investmentmenu only.