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§
Sourcefn get_dir(self) -> DisposData_Directions
fn get_dir(self) -> DisposData_Directions
get_Dir() overload
Sourcefn set_dir(self, value: impl Into<DisposData_Directions>)
fn set_dir(self, value: impl Into<DisposData_Directions>)
set_Dir(crate::app::disposdata::DisposData_Directions) 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§
impl<__T: IMapDispos_Pos> IMapDispos_PosMethods for __T
Available on crate feature
app-mapdispos only.