pub trait IRingSelectMenu_RingMenuItem: IBasicMenuItem {
// Provided methods
fn m_is_god(self) -> bool { ... }
fn set_m_is_god(self, value: bool) { ... }
fn m_god(self) -> GodUnit { ... }
fn set_m_god(self, value: GodUnit) { ... }
fn m_ring(self) -> UnitRing { ... }
fn set_m_ring(self, value: UnitRing) { ... }
}Provided Methods§
fn m_is_god(self) -> bool
fn set_m_is_god(self, value: bool)
fn m_god(self) -> GodUnit
fn set_m_god(self, value: GodUnit)
fn m_ring(self) -> UnitRing
fn set_m_ring(self, value: UnitRing)
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.