Skip to main content

IItemUseSequence

Trait IItemUseSequence 

Source
pub trait IItemUseSequence: IProcInst {
    // Provided methods
    fn m_unit(self) -> Unit { ... }
    fn set_m_unit(self, value: Unit) { ... }
    fn m_use_item(self) -> UnitItem { ... }
    fn set_m_use_item(self, value: UnitItem) { ... }
    fn m_item_data(self) -> ItemData { ... }
    fn set_m_item_data(self, value: ItemData) { ... }
    fn m_target_index(self) -> i32 { ... }
    fn set_m_target_index(self, value: i32) { ... }
    fn m_gain_exp(self) -> i32 { ... }
    fn set_m_gain_exp(self, value: i32) { ... }
}

Provided Methods§

Source

fn m_unit(self) -> Unit

Source

fn set_m_unit(self, value: Unit)

Source

fn m_use_item(self) -> UnitItem

Source

fn set_m_use_item(self, value: UnitItem)

Source

fn m_item_data(self) -> ItemData

Source

fn set_m_item_data(self, value: ItemData)

Source

fn m_target_index(self) -> i32

Source

fn set_m_target_index(self, value: i32)

Source

fn m_gain_exp(self) -> i32

Source

fn set_m_gain_exp(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.

Implementors§