Skip to main content

ISupportCalculator

Trait ISupportCalculator 

Source
pub trait ISupportCalculator: IObject {
Show 20 methods // Provided methods fn m_unit(self) -> Unit { ... } fn set_m_unit(self, value: Unit) { ... } fn m_x(self) -> i32 { ... } fn set_m_x(self, value: i32) { ... } fn m_z(self) -> i32 { ... } fn set_m_z(self, value: i32) { ... } 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_show_units(self) -> Array<Unit> { ... } fn set_m_show_units(self, value: Array<Unit>) { ... } fn m_show_unit_levels(self) -> Array<RelianceData_Level> { ... } fn set_m_show_unit_levels(self, value: Array<RelianceData_Level>) { ... } fn m_range_function(self) -> MapFor_RangeFunction { ... } fn set_m_range_function(self, value: MapFor_RangeFunction) { ... }
}

Provided Methods§

Source

fn m_unit(self) -> Unit

Source

fn set_m_unit(self, value: Unit)

Source

fn m_x(self) -> i32

Source

fn set_m_x(self, value: i32)

Source

fn m_z(self) -> i32

Source

fn set_m_z(self, value: i32)

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_show_units(self) -> Array<Unit>

Source

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

Source

fn m_show_unit_levels(self) -> Array<RelianceData_Level>

Source

fn set_m_show_unit_levels(self, value: Array<RelianceData_Level>)

Source

fn m_range_function(self) -> MapFor_RangeFunction

Source

fn set_m_range_function(self, value: MapFor_RangeFunction)

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§