Skip to main content

IMapDispos_PosMethods

Trait IMapDispos_PosMethods 

Source
pub trait IMapDispos_PosMethods: IMapDispos_Pos {
    // Provided methods
    fn get_x(self) -> i32 { ... }
    fn set_x(self, value: impl Into<i32>) { ... }
    fn get_z(self) -> i32 { ... }
    fn set_z(self, value: impl Into<i32>) { ... }
    fn get_dir(self) -> DisposData_Directions { ... }
    fn set_dir(self, value: impl Into<DisposData_Directions>) { ... }
    fn ctor(self) { ... }
}

Provided Methods§

Source

fn get_x(self) -> i32

get_X() overload

Source

fn set_x(self, value: impl Into<i32>)

set_X(i32) overload

Source

fn get_z(self) -> i32

get_Z() overload

Source

fn set_z(self, value: impl Into<i32>)

set_Z(i32) overload

Source

fn get_dir(self) -> DisposData_Directions

get_Dir() overload

Source

fn set_dir(self, value: impl Into<DisposData_Directions>)

set_Dir(crate::app::disposdata::DisposData_Directions) 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: IMapDispos_Pos> IMapDispos_PosMethods for __T

Available on crate feature app-mapdispos only.