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§
Sourcefn copy_from(self, src: impl Into<MapImageCoreBit>)
fn copy_from(self, src: impl Into<MapImageCoreBit>)
CopyFrom(crate::app::mapimagecorebit::MapImageCoreBit) overload
Sourcefn merge_from(self, src: impl Into<MapImageCoreBit>)
fn merge_from(self, src: impl Into<MapImageCoreBit>)
MergeFrom(crate::app::mapimagecorebit::MapImageCoreBit) overload
Sourcefn get_2(
self,
x: impl Into<i32>,
z: impl Into<i32>,
size: impl Into<i32>,
) -> bool
fn get_2( self, x: impl Into<i32>, z: impl Into<i32>, size: impl Into<i32>, ) -> bool
Get(i32, 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: IMapImageCoreBit> IMapImageCoreBitMethods for __T
Available on crate feature
app-mapimagecorebit only.