Skip to main content

IMapSituation_ForceCursorMethods

Trait IMapSituation_ForceCursorMethods 

Source
pub trait IMapSituation_ForceCursorMethods: IMapSituation_ForceCursor {
    // Provided methods
    fn set(self, x: impl Into<i32>, z: impl Into<i32>) { ... }
    fn clear(self) { ... }
    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 ctor(self) { ... }
}

Provided Methods§

Source

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

Set(i32, i32) overload

Source

fn clear(self)

Clear() overload

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 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: IMapSituation_ForceCursor> IMapSituation_ForceCursorMethods for __T

Available on crate feature app-mapsituation only.