pub trait ITradeMenu: IGridMenu {
// Provided methods
fn m_select_item_index(self) -> i32 { ... }
fn set_m_select_item_index(self, value: i32) { ... }
fn m_can_left_unit_auto_equip_before(self) -> bool { ... }
fn set_m_can_left_unit_auto_equip_before(self, value: bool) { ... }
fn m_can_right_unit_auto_equip_before(self) -> bool { ... }
fn set_m_can_right_unit_auto_equip_before(self, value: bool) { ... }
}Provided Methods§
fn m_select_item_index(self) -> i32
fn set_m_select_item_index(self, value: i32)
fn m_can_left_unit_auto_equip_before(self) -> bool
fn set_m_can_left_unit_auto_equip_before(self, value: bool)
fn m_can_right_unit_auto_equip_before(self) -> bool
fn set_m_can_right_unit_auto_equip_before(self, value: bool)
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.