Skip to main content

IHelpItemUnitSkillMethods

Trait IHelpItemUnitSkillMethods 

Source
pub trait IHelpItemUnitSkillMethods: IHelpItemUnitSkill {
    // Provided methods
    fn awake(self) { ... }
    fn get_skill_list(
        self,
        unit: impl Into<Unit>,
    ) -> Array<InfoUtil_StatusSkill> { ... }
    fn get_index_skill(
        self,
        unit: impl Into<Unit>,
        icon_index: impl Into<i32>,
    ) -> SkillData { ... }
    fn get_index_skill_category(
        self,
        unit: impl Into<Unit>,
        icon_index: impl Into<i32>,
    ) -> SkillData_Categorys { ... }
    fn is_valid(self) -> bool { ... }
    fn set_contents(self, setter: impl Into<HelpParamSetter>) { ... }
    fn start(self) { ... }
    fn update(self) { ... }
    fn ctor(self) { ... }
}

Provided Methods§

Source

fn awake(self)

Awake() overload

Source

fn get_skill_list(self, unit: impl Into<Unit>) -> Array<InfoUtil_StatusSkill>

GetSkillList(crate::app::unit::Unit) overload

Source

fn get_index_skill( self, unit: impl Into<Unit>, icon_index: impl Into<i32>, ) -> SkillData

GetIndexSkill(crate::app::unit::Unit, i32) overload

Source

fn get_index_skill_category( self, unit: impl Into<Unit>, icon_index: impl Into<i32>, ) -> SkillData_Categorys

GetIndexSkillCategory(crate::app::unit::Unit, i32) overload

Source

fn is_valid(self) -> bool

IsValid() overload

Source

fn set_contents(self, setter: impl Into<HelpParamSetter>)

SetContents(crate::app::helpparamsetter::HelpParamSetter) overload

Source

fn start(self)

Start() overload

Source

fn update(self)

Update() 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: IHelpItemUnitSkill> IHelpItemUnitSkillMethods for __T

Available on crate feature app-helpitemunitskill only.