pub trait IMapImageCore_1Methods<T0: ClassIdentity>: ClassIdentity {
// Provided methods
fn ctor(self)
where Self: Sized { ... }
fn clear(self, v: T0)
where Self: Sized { ... }
fn copy_from(self, src: MapImageCore_1<T0>)
where Self: Sized { ... }
fn set(self, index: i32, v: T0)
where Self: Sized { ... }
fn set_2(self, x: i32, z: i32, v: T0)
where Self: Sized { ... }
fn get(self, index: i32) -> T0
where Self: Sized { ... }
fn get_2(self, x: i32, z: i32) -> T0
where Self: Sized { ... }
fn add(self, index: i32, v: T0)
where Self: Sized + Into<IlInstance> { ... }
fn add_2(self, x: i32, z: i32, v: T0)
where Self: Sized { ... }
fn dump(self)
where Self: Sized { ... }
fn get_images(self) -> Array<T0>
where Self: Sized { ... }
}Provided Methods§
fn ctor(self)where
Self: Sized,
fn clear(self, v: T0)where
Self: Sized,
fn copy_from(self, src: MapImageCore_1<T0>)where
Self: Sized,
fn set(self, index: i32, v: T0)where
Self: Sized,
fn set_2(self, x: i32, z: i32, v: T0)where
Self: Sized,
fn get(self, index: i32) -> T0where
Self: Sized,
fn get_2(self, x: i32, z: i32) -> T0where
Self: Sized,
fn add(self, index: i32, v: T0)where
Self: Sized + Into<IlInstance>,
fn add_2(self, x: i32, z: i32, v: T0)where
Self: Sized,
fn dump(self)where
Self: Sized,
fn get_images(self) -> Array<T0>where
Self: Sized,
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.