Skip to main content

IHelpItemSkill

Trait IHelpItemSkill 

Source
pub trait IHelpItemSkill: IHelpItemBase {
    // Provided methods
    fn m_skill_data(self) -> SkillData { ... }
    fn set_m_skill_data(self, value: SkillData) { ... }
    fn m_unit(self) -> Unit { ... }
    fn set_m_unit(self, value: Unit) { ... }
    fn m_is_forced_engage(self) -> bool { ... }
    fn set_m_is_forced_engage(self, value: bool) { ... }
    fn m_is_force_display(self) -> bool { ... }
    fn set_m_is_force_display(self, value: bool) { ... }
}

Provided Methods§

Source

fn m_skill_data(self) -> SkillData

Source

fn set_m_skill_data(self, value: SkillData)

Source

fn m_unit(self) -> Unit

Source

fn set_m_unit(self, value: Unit)

Source

fn m_is_forced_engage(self) -> bool

Source

fn set_m_is_forced_engage(self, value: bool)

Source

fn m_is_force_display(self) -> bool

Source

fn set_m_is_force_display(self, value: bool)

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§