pub trait ISortieTradeItemMenu: IBasicMenu {
// Provided methods
fn m_unit(self) -> Unit { ... }
fn set_m_unit(self, value: Unit) { ... }
fn m_reciever_unit(self) -> Unit { ... }
fn set_m_reciever_unit(self, value: Unit) { ... }
fn m_first_select(self) -> i32 { ... }
fn set_m_first_select(self, value: i32) { ... }
fn m_second_select(self) -> i32 { ... }
fn set_m_second_select(self, value: i32) { ... }
}Provided Methods§
fn m_unit(self) -> Unit
fn set_m_unit(self, value: Unit)
fn m_reciever_unit(self) -> Unit
fn set_m_reciever_unit(self, value: Unit)
fn m_first_select(self) -> i32
fn set_m_first_select(self, value: i32)
fn m_second_select(self) -> i32
fn set_m_second_select(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.