Skip to main content

IMapImageRangeMethods

Trait IMapImageRangeMethods 

Source
pub trait IMapImageRangeMethods: IMapImageRange {
    // Provided methods
    fn clear(self) { ... }
    fn add(self, x: impl Into<i32>, z: impl Into<i32>) { ... }
    fn delete(self, x: impl Into<i32>, z: impl Into<i32>) { ... }
    fn get(self, x: impl Into<i32>, z: impl Into<i32>) -> bool { ... }
    fn get_count(self) -> i32 { ... }
    fn get_x(self, i: impl Into<i32>) -> i32 { ... }
    fn get_z(self, i: impl Into<i32>) -> i32 { ... }
    fn sort(self) { ... }
    fn open_fan(
        self,
        start_x: impl Into<i32>,
        start_z: impl Into<i32>,
        target_x: impl Into<i32>,
        target_z: impl Into<i32>,
        angle: impl Into<i32>,
    ) { ... }
    fn serialize(self, stream: impl Into<Stream_2>) { ... }
    fn deserialize(self, stream: impl Into<Stream_2>) { ... }
    fn ctor(self) { ... }
}

Provided Methods§

Source

fn clear(self)

Clear() overload

Source

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

Add(i32, i32) overload

Source

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

Delete(i32, i32) overload

Source

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

Get(i32, i32) overload

Source

fn get_count(self) -> i32

get_Count() overload

Source

fn get_x(self, i: impl Into<i32>) -> i32

GetX(i32) overload

Source

fn get_z(self, i: impl Into<i32>) -> i32

GetZ(i32) overload

Source

fn sort(self)

Sort() overload

Source

fn open_fan( self, start_x: impl Into<i32>, start_z: impl Into<i32>, target_x: impl Into<i32>, target_z: impl Into<i32>, angle: impl Into<i32>, )

OpenFan(i32, i32, i32, i32, i32) overload

Source

fn serialize(self, stream: impl Into<Stream_2>)

Serialize(crate::app::stream_2::Stream_2) overload

Source

fn deserialize(self, stream: impl Into<Stream_2>)

Deserialize(crate::app::stream_2::Stream_2) overload

Source

fn ctor(self)

.ctor() 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: IMapImageRange> IMapImageRangeMethods for __T

Available on crate feature app-mapimagerange only.