pub trait IInvestmentNationDataMenuMethods: IInvestmentNationDataMenu {
// Provided methods
fn setup(self, index: impl Into<i32>) { ... }
fn setup_nation(self) { ... }
fn update(self) { ... }
fn get_nation_index(self) -> i32 { ... }
fn is_closed(self) -> bool { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn setup_nation(self)
fn setup_nation(self)
SetupNation() overload
Sourcefn get_nation_index(self) -> i32
fn get_nation_index(self) -> i32
GetNationIndex() 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: IInvestmentNationDataMenu> IInvestmentNationDataMenuMethods for __T
Available on crate feature
app-investmentnationdatamenu only.