Skip to main content

IMapImageCoreBitMethods

Trait IMapImageCoreBitMethods 

Source
pub trait IMapImageCoreBitMethods: IMapImageCoreBit {
    // Provided methods
    fn ctor(self) { ... }
    fn clear(self) { ... }
    fn copy_from(self, src: impl Into<MapImageCoreBit>) { ... }
    fn fill(self) { ... }
    fn merge_from(self, src: impl Into<MapImageCoreBit>) { ... }
    fn set(self, x: impl Into<i32>, z: impl Into<i32>) { ... }
    fn get(self, x: impl Into<i32>, z: impl Into<i32>) -> bool { ... }
    fn clr(self, x: impl Into<i32>, z: impl Into<i32>) { ... }
    fn get_2(
        self,
        x: impl Into<i32>,
        z: impl Into<i32>,
        size: impl Into<i32>,
    ) -> bool { ... }
    fn exists(self) -> bool { ... }
    fn dump(self) { ... }
    fn get_hash_code(self) -> i32 { ... }
}

Provided Methods§

Source

fn ctor(self)

.ctor() overload

Source

fn clear(self)

Clear() overload

Source

fn copy_from(self, src: impl Into<MapImageCoreBit>)

CopyFrom(crate::app::mapimagecorebit::MapImageCoreBit) overload

Source

fn fill(self)

Fill() overload

Source

fn merge_from(self, src: impl Into<MapImageCoreBit>)

MergeFrom(crate::app::mapimagecorebit::MapImageCoreBit) overload

Source

fn set(self, x: impl Into<i32>, z: impl Into<i32>)

Set(i32, i32) overload

Source

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

Get(i32, i32) overload

Source

fn clr(self, x: impl Into<i32>, z: impl Into<i32>)

Clr(i32, i32) overload

Source

fn get_2( self, x: impl Into<i32>, z: impl Into<i32>, size: impl Into<i32>, ) -> bool

Get(i32, i32, i32) overload

Source

fn exists(self) -> bool

Exists() overload

Source

fn dump(self)

Dump() 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: IMapImageCoreBit> IMapImageCoreBitMethods for __T

Available on crate feature app-mapimagecorebit only.