Skip to main content

ISupportInfo

Trait ISupportInfo 

Source
pub trait ISupportInfo: IMonoBehaviour {
Show 14 methods // Provided methods fn m_side_type(self) -> BattleSide_Type { ... } fn set_m_side_type(self, value: BattleSide_Type) { ... } fn m_hit(self) -> i32 { ... } fn set_m_hit(self, value: i32) { ... } fn m_avoid(self) -> i32 { ... } fn set_m_avoid(self, value: i32) { ... } fn m_critical(self) -> i32 { ... } fn set_m_critical(self, value: i32) { ... } fn m_secure(self) -> i32 { ... } fn set_m_secure(self, value: i32) { ... } fn m_support_units(self) -> Array<Unit> { ... } fn set_m_support_units(self, value: Array<Unit>) { ... } fn m_skill_array(self) -> SkillArray { ... } fn set_m_skill_array(self, value: SkillArray) { ... }
}

Provided Methods§

Source

fn m_side_type(self) -> BattleSide_Type

Source

fn set_m_side_type(self, value: BattleSide_Type)

Source

fn m_hit(self) -> i32

Source

fn set_m_hit(self, value: i32)

Source

fn m_avoid(self) -> i32

Source

fn set_m_avoid(self, value: i32)

Source

fn m_critical(self) -> i32

Source

fn set_m_critical(self, value: i32)

Source

fn m_secure(self) -> i32

Source

fn set_m_secure(self, value: i32)

Source

fn m_support_units(self) -> Array<Unit>

Source

fn set_m_support_units(self, value: Array<Unit>)

Source

fn m_skill_array(self) -> SkillArray

Source

fn set_m_skill_array(self, value: SkillArray)

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§