pub trait IItemGainSequence: IProcInst {
// Provided methods
fn m_unit(self) -> Unit { ... }
fn set_m_unit(self, value: Unit) { ... }
fn m_unit_item(self) -> UnitItem { ... }
fn set_m_unit_item(self, value: UnitItem) { ... }
fn m_item_data(self) -> ItemData { ... }
fn set_m_item_data(self, value: ItemData) { ... }
fn m_label(self) -> Il2CppString { ... }
fn set_m_label(self, value: Il2CppString) { ... }
fn m_count(self) -> i32 { ... }
fn set_m_count(self, value: i32) { ... }
}Provided Methods§
fn m_unit(self) -> Unit
fn set_m_unit(self, value: Unit)
fn m_unit_item(self) -> UnitItem
fn set_m_unit_item(self, value: UnitItem)
fn m_item_data(self) -> ItemData
fn set_m_item_data(self, value: ItemData)
fn m_label(self) -> Il2CppString
fn set_m_label(self, value: Il2CppString)
fn m_count(self) -> i32
fn set_m_count(self, value: i32)
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.