pub trait IMapImageTerrainMethods: IMapImageTerrain {
// Provided methods
fn ctor(self) { ... }
fn clear(self) { ... }
fn get_original(self) -> MapImageCoreByte { ... }
fn get_base(self) -> MapImageCoreByte { ... }
fn get_minimap_infos(self) -> List_1<MapImageTerrain_MinimapInfo> { ... }
fn update(self) { ... }
fn update_minimap(self) { ... }
fn update_for_event(self) { ... }
fn get(self, x: impl Into<i32>, z: impl Into<i32>) -> u8 { ... }
fn get_data(self, x: impl Into<i32>, z: impl Into<i32>) -> TerrainData_2 { ... }
fn get_hash_code(self) -> i32 { ... }
}Provided Methods§
Sourcefn get_original(self) -> MapImageCoreByte
fn get_original(self) -> MapImageCoreByte
get_Original() overload
Sourcefn get_base(self) -> MapImageCoreByte
fn get_base(self) -> MapImageCoreByte
get_Base() overload
Sourcefn get_minimap_infos(self) -> List_1<MapImageTerrain_MinimapInfo>
fn get_minimap_infos(self) -> List_1<MapImageTerrain_MinimapInfo>
get_MinimapInfos() overload
Sourcefn update_minimap(self)
fn update_minimap(self)
UpdateMinimap() overload
Sourcefn update_for_event(self)
fn update_for_event(self)
UpdateForEvent() overload
Sourcefn get_data(self, x: impl Into<i32>, z: impl Into<i32>) -> TerrainData_2
fn get_data(self, x: impl Into<i32>, z: impl Into<i32>) -> TerrainData_2
GetData(i32, i32) overload
Sourcefn get_hash_code(self) -> i32
fn get_hash_code(self) -> i32
GetHashCode() 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: IMapImageTerrain> IMapImageTerrainMethods for __T
Available on crate feature
app-mapimageterrain only.