pub trait IMapPanelHistoryMethods: IMapPanelHistory {
// Provided methods
fn update(self) { ... }
fn add_vertex(
self,
map: impl Into<MapImageHistory_HeatMap>,
x: impl Into<i32>,
z: impl Into<i32>,
force: impl Into<Force_Type>,
color: impl Into<Color>,
) { ... }
fn set_vertex(self) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn add_vertex(
self,
map: impl Into<MapImageHistory_HeatMap>,
x: impl Into<i32>,
z: impl Into<i32>,
force: impl Into<Force_Type>,
color: impl Into<Color>,
)
fn add_vertex( self, map: impl Into<MapImageHistory_HeatMap>, x: impl Into<i32>, z: impl Into<i32>, force: impl Into<Force_Type>, color: impl Into<Color>, )
AddVertex(crate::app::mapimagehistory::MapImageHistory_HeatMap, i32, i32, crate::app::force::Force_Type, crate::unity_engine::color::Color) 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: IMapPanelHistory> IMapPanelHistoryMethods for __T
Available on crate feature
app-mappanelhistory only.