pub trait IMapUIIconMethods: IMapUIIcon {
Show 13 methods
// Provided methods
fn start(self) { ... }
fn on_destroy(self) { ... }
fn update(self) { ... }
fn get_sprites(self) { ... }
fn get_sprite(self, index: impl Into<i32>) -> Sprite { ... }
fn set_icon(self) { ... }
fn registe_icon_table(self, key: impl Into<i32>) { ... }
fn unregiste_icon_table(self) { ... }
fn update_icon_table(self) { ... }
fn is_remove(
self,
inspectors: impl Into<List_1<MapInspector>>,
key: impl Into<i32>,
) -> bool { ... }
fn clear_icon_table(self) { ... }
fn set_is_update(self, value: impl Into<bool>) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn on_destroy(self)
fn on_destroy(self)
OnDestroy() overload
Sourcefn get_sprites(self)
fn get_sprites(self)
GetSprites() overload
Sourcefn get_sprite(self, index: impl Into<i32>) -> Sprite
fn get_sprite(self, index: impl Into<i32>) -> Sprite
GetSprite(i32) overload
Sourcefn registe_icon_table(self, key: impl Into<i32>)
fn registe_icon_table(self, key: impl Into<i32>)
RegisteIconTable(i32) overload
Sourcefn unregiste_icon_table(self)
fn unregiste_icon_table(self)
UnregisteIconTable() overload
Sourcefn update_icon_table(self)
fn update_icon_table(self)
UpdateIconTable() overload
Sourcefn is_remove(
self,
inspectors: impl Into<List_1<MapInspector>>,
key: impl Into<i32>,
) -> bool
fn is_remove( self, inspectors: impl Into<List_1<MapInspector>>, key: impl Into<i32>, ) -> bool
IsRemove(crate::system::collections::generic::list_1::List_1<crate::app::mapinspector::MapInspector>, i32) overload
Sourcefn clear_icon_table(self)
fn clear_icon_table(self)
ClearIconTable() overload
Sourcefn set_is_update(self, value: impl Into<bool>)
fn set_is_update(self, value: impl Into<bool>)
set_IsUpdate(bool) 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: IMapUIIcon> IMapUIIconMethods for __T
Available on crate feature
root-mapuiicon only.