Skip to main content

IItemRefineDataMethods

Trait IItemRefineDataMethods 

Source
pub trait IItemRefineDataMethods: IItemRefineData {
Show 18 methods // Provided methods fn get_iron(self) -> u16 { ... } fn set_iron(self, value: impl Into<u16>) { ... } fn get_steel(self) -> u16 { ... } fn set_steel(self, value: impl Into<u16>) { ... } fn get_silver(self) -> u16 { ... } fn set_silver(self, value: impl Into<u16>) { ... } fn get_price(self) -> u16 { ... } fn set_price(self, value: impl Into<u16>) { ... } fn get_power(self) -> i8 { ... } fn set_power(self, value: impl Into<i8>) { ... } fn get_weight(self) -> i8 { ... } fn set_weight(self, value: impl Into<i8>) { ... } fn get_hit(self) -> i8 { ... } fn set_hit(self, value: impl Into<i8>) { ... } fn get_critical(self) -> i8 { ... } fn set_critical(self, value: impl Into<i8>) { ... } fn get_debug_name(self) -> Il2CppString { ... } fn ctor(self) { ... }
}

Provided Methods§

Source

fn get_iron(self) -> u16

get_Iron() overload

Source

fn set_iron(self, value: impl Into<u16>)

set_Iron(u16) overload

Source

fn get_steel(self) -> u16

get_Steel() overload

Source

fn set_steel(self, value: impl Into<u16>)

set_Steel(u16) overload

Source

fn get_silver(self) -> u16

get_Silver() overload

Source

fn set_silver(self, value: impl Into<u16>)

set_Silver(u16) overload

Source

fn get_price(self) -> u16

get_Price() overload

Source

fn set_price(self, value: impl Into<u16>)

set_Price(u16) overload

Source

fn get_power(self) -> i8

get_Power() overload

Source

fn set_power(self, value: impl Into<i8>)

set_Power(i8) overload

Source

fn get_weight(self) -> i8

get_Weight() overload

Source

fn set_weight(self, value: impl Into<i8>)

set_Weight(i8) overload

Source

fn get_hit(self) -> i8

get_Hit() overload

Source

fn set_hit(self, value: impl Into<i8>)

set_Hit(i8) overload

Source

fn get_critical(self) -> i8

get_Critical() overload

Source

fn set_critical(self, value: impl Into<i8>)

set_Critical(i8) overload

Source

fn get_debug_name(self) -> Il2CppString

GetDebugName() overload

Source

fn ctor(self)

.ctor() 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§

Source§

impl<__T: IItemRefineData> IItemRefineDataMethods for __T

Available on crate feature app-itemrefinedata only.