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§
Sourcefn get_skill_list(self, unit: impl Into<Unit>) -> Array<InfoUtil_StatusSkill>
fn get_skill_list(self, unit: impl Into<Unit>) -> Array<InfoUtil_StatusSkill>
GetSkillList(crate::app::unit::Unit) overload
Sourcefn get_index_skill(
self,
unit: impl Into<Unit>,
icon_index: impl Into<i32>,
) -> SkillData
fn get_index_skill( self, unit: impl Into<Unit>, icon_index: impl Into<i32>, ) -> SkillData
GetIndexSkill(crate::app::unit::Unit, i32) overload
Sourcefn get_index_skill_category(
self,
unit: impl Into<Unit>,
icon_index: impl Into<i32>,
) -> SkillData_Categorys
fn get_index_skill_category( self, unit: impl Into<Unit>, icon_index: impl Into<i32>, ) -> SkillData_Categorys
GetIndexSkillCategory(crate::app::unit::Unit, i32) overload
Sourcefn set_contents(self, setter: impl Into<HelpParamSetter>)
fn set_contents(self, setter: impl Into<HelpParamSetter>)
SetContents(crate::app::helpparamsetter::HelpParamSetter) 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: IHelpItemUnitSkill> IHelpItemUnitSkillMethods for __T
Available on crate feature
app-helpitemunitskill only.