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§
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§
impl<__T: IMapSituation_ForceCursor> IMapSituation_ForceCursorMethods for __T
Available on crate feature
app-mapsituation only.