Skip to main content

IMapImageCore_1Methods

Trait IMapImageCore_1Methods 

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

Source

fn ctor(self)
where Self: Sized,

Source

fn clear(self, v: T0)
where Self: Sized,

Source

fn copy_from(self, src: MapImageCore_1<T0>)
where Self: Sized,

Source

fn set(self, index: i32, v: T0)
where Self: Sized,

Source

fn set_2(self, x: i32, z: i32, v: T0)
where Self: Sized,

Source

fn get(self, index: i32) -> T0
where Self: Sized,

Source

fn get_2(self, x: i32, z: i32) -> T0
where Self: Sized,

Source

fn add(self, index: i32, v: T0)
where Self: Sized + Into<IlInstance>,

Source

fn add_2(self, x: i32, z: i32, v: T0)
where Self: Sized,

Source

fn dump(self)
where Self: Sized,

Source

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.

Implementors§