pub trait IBasicSkillMenuItemMethods: IBasicSkillMenuItem {
// Provided methods
fn get_skill(self) -> SkillData { ... }
fn is_active_skill_icon(self) -> bool { ... }
fn get_sub_text(self) -> BasicSkillMenuItemContent_SubText { ... }
fn get_blank_text(self) -> Il2CppString { ... }
fn on_build_menu_item_content(self) { ... }
fn set_initial_color(self) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn is_active_skill_icon(self) -> bool
fn is_active_skill_icon(self) -> bool
IsActiveSkillIcon() overload
Sourcefn get_sub_text(self) -> BasicSkillMenuItemContent_SubText
fn get_sub_text(self) -> BasicSkillMenuItemContent_SubText
GetSubText() overload
Sourcefn get_blank_text(self) -> Il2CppString
fn get_blank_text(self) -> Il2CppString
GetBlankText() overload
OnBuildMenuItemContent() overload
Sourcefn set_initial_color(self)
fn set_initial_color(self)
SetInitialColor() 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: IBasicSkillMenuItem> IBasicSkillMenuItemMethods for __T
Available on crate feature
app-basicskillmenuitem only.