pub trait IHelpItemSkillMethods: IHelpItemSkill {
// Provided methods
fn set_skill_data(
self,
skill: impl Into<SkillData>,
unit: impl Into<Unit>,
is_forced_engage: impl Into<bool>,
) { ... }
fn is_valid(self) -> bool { ... }
fn set_contents(self, setter: impl Into<HelpParamSetter>) { ... }
fn set_force_display(self) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn set_skill_data(
self,
skill: impl Into<SkillData>,
unit: impl Into<Unit>,
is_forced_engage: impl Into<bool>,
)
fn set_skill_data( self, skill: impl Into<SkillData>, unit: impl Into<Unit>, is_forced_engage: impl Into<bool>, )
SetSkillData(crate::app::skilldata::SkillData, crate::app::unit::Unit, bool) overload
Sourcefn set_contents(self, setter: impl Into<HelpParamSetter>)
fn set_contents(self, setter: impl Into<HelpParamSetter>)
SetContents(crate::app::helpparamsetter::HelpParamSetter) overload
Sourcefn set_force_display(self)
fn set_force_display(self)
SetForceDisplay() 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: IHelpItemSkill> IHelpItemSkillMethods for __T
Available on crate feature
app-helpitemskill only.