Skip to main content

IMapSortiePosition_DataMethods

Trait IMapSortiePosition_DataMethods 

Source
pub trait IMapSortiePosition_DataMethods: IMapSortiePosition_Data {
    // 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_angle(self) -> f32 { ... }
    fn set_angle(self, value: impl Into<f32>) { ... }
    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_angle(self) -> f32

get_Angle() overload

Source

fn set_angle(self, value: impl Into<f32>)

set_Angle(f32) 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: IMapSortiePosition_Data> IMapSortiePosition_DataMethods for __T

Available on crate feature app-mapsortieposition only.