Skip to main content

IMapImageTerrainMethods

Trait IMapImageTerrainMethods 

Source
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§

Source

fn ctor(self)

.ctor() overload

Source

fn clear(self)

Clear() overload

Source

fn get_original(self) -> MapImageCoreByte

get_Original() overload

Source

fn get_base(self) -> MapImageCoreByte

get_Base() overload

Source

fn get_minimap_infos(self) -> List_1<MapImageTerrain_MinimapInfo>

get_MinimapInfos() overload

Source

fn update(self)

Update() overload

Source

fn update_minimap(self)

UpdateMinimap() overload

Source

fn update_for_event(self)

UpdateForEvent() overload

Source

fn get(self, x: impl Into<i32>, z: impl Into<i32>) -> u8

Get(i32, i32) overload

Source

fn get_data(self, x: impl Into<i32>, z: impl Into<i32>) -> TerrainData_2

GetData(i32, i32) overload

Source

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§

Source§

impl<__T: IMapImageTerrain> IMapImageTerrainMethods for __T

Available on crate feature app-mapimageterrain only.