Skip to main content

IRingSelectMenu_RingMenuItemMethods

Trait IRingSelectMenu_RingMenuItemMethods 

Source
pub trait IRingSelectMenu_RingMenuItemMethods: IRingSelectMenu_RingMenuItem {
    // Provided methods
    fn get_ring_sort_id(self) -> i32 { ... }
    fn set_ring_sort_id(self, value: impl Into<i32>) { ... }
    fn ctor(
        self,
        is_god: impl Into<bool>,
        god: impl Into<GodUnit>,
        ring: impl Into<UnitRing>,
        ring_sort_id: impl Into<i32>,
    ) { ... }
    fn is_god(self) -> bool { ... }
    fn get_god(self) -> GodUnit { ... }
    fn get_common(self) -> UnitRing { ... }
    fn build_attribute(self) -> BasicMenuItem_Attribute { ... }
    fn a_call(self) -> BasicMenu_Result { ... }
    fn on_select(self) { ... }
}

Provided Methods§

Source

fn get_ring_sort_id(self) -> i32

get_RingSortId() overload

Source

fn set_ring_sort_id(self, value: impl Into<i32>)

set_RingSortId(i32) overload

Source

fn ctor( self, is_god: impl Into<bool>, god: impl Into<GodUnit>, ring: impl Into<UnitRing>, ring_sort_id: impl Into<i32>, )

.ctor(bool, crate::app::godunit::GodUnit, crate::app::unitring::UnitRing, i32) overload

Source

fn is_god(self) -> bool

IsGod() overload

Source

fn get_god(self) -> GodUnit

GetGod() overload

Source

fn get_common(self) -> UnitRing

GetCommon() overload

Source

fn build_attribute(self) -> BasicMenuItem_Attribute

BuildAttribute() overload

Source

fn a_call(self) -> BasicMenu_Result

ACall() overload

Source

fn on_select(self)

OnSelect() overload

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§

Source§

impl<__T: IRingSelectMenu_RingMenuItem> IRingSelectMenu_RingMenuItemMethods for __T

Available on crate feature app-ringselectmenu only.