pub trait IInvestmentMapPointMethods: IInvestmentMapPoint {
// Provided methods
fn get_rare_animal(self, nation: impl Into<HubNationData>) -> AnimalData { ... }
fn setup(self) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_rare_animal(self, nation: impl Into<HubNationData>) -> AnimalData
fn get_rare_animal(self, nation: impl Into<HubNationData>) -> AnimalData
GetRareAnimal(crate::app::hubnationdata::HubNationData) 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: IInvestmentMapPoint> IInvestmentMapPointMethods for __T
Available on crate feature
app-investmentmappoint only.