pub trait IMapPanelSortieMethods: IMapPanelSortie {
// Provided methods
fn renew(self) { ... }
fn set_select(self, x: impl Into<i32>, z: impl Into<i32>) { ... }
fn clear_select(self) { ... }
fn get_select_x(self) -> i32 { ... }
fn set_select_x(self, value: impl Into<i32>) { ... }
fn get_select_z(self) -> i32 { ... }
fn set_select_z(self, value: impl Into<i32>) { ... }
fn get_is_selected(self) -> bool { ... }
fn awake(self) { ... }
fn on_enable(self) { ... }
fn set_vertex(self) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn set_select(self, x: impl Into<i32>, z: impl Into<i32>)
fn set_select(self, x: impl Into<i32>, z: impl Into<i32>)
SetSelect(i32, i32) overload
Sourcefn clear_select(self)
fn clear_select(self)
ClearSelect() overload
Sourcefn get_select_x(self) -> i32
fn get_select_x(self) -> i32
get_SelectX() overload
Sourcefn set_select_x(self, value: impl Into<i32>)
fn set_select_x(self, value: impl Into<i32>)
set_SelectX(i32) overload
Sourcefn get_select_z(self) -> i32
fn get_select_z(self) -> i32
get_SelectZ() overload
Sourcefn set_select_z(self, value: impl Into<i32>)
fn set_select_z(self, value: impl Into<i32>)
set_SelectZ(i32) overload
Sourcefn get_is_selected(self) -> bool
fn get_is_selected(self) -> bool
get_IsSelected() overload
Sourcefn set_vertex(self)
fn set_vertex(self)
SetVertex() 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: IMapPanelSortie> IMapPanelSortieMethods for __T
Available on crate feature
app-mappanelsortie only.