Skip to main content

IMapUIIconMethods

Trait IMapUIIconMethods 

Source
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§

Source

fn start(self)

Start() overload

Source

fn on_destroy(self)

OnDestroy() overload

Source

fn update(self)

Update() overload

Source

fn get_sprites(self)

GetSprites() overload

Source

fn get_sprite(self, index: impl Into<i32>) -> Sprite

GetSprite(i32) overload

Source

fn set_icon(self)

SetIcon() overload

Source

fn registe_icon_table(self, key: impl Into<i32>)

RegisteIconTable(i32) overload

Source

fn unregiste_icon_table(self)

UnregisteIconTable() overload

Source

fn update_icon_table(self)

UpdateIconTable() overload

Source

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

Source

fn clear_icon_table(self)

ClearIconTable() overload

Source

fn set_is_update(self, value: impl Into<bool>)

set_IsUpdate(bool) overload

Source

fn ctor(self)

.ctor() 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§

Source§

impl<__T: IMapUIIcon> IMapUIIconMethods for __T

Available on crate feature root-mapuiicon only.