Skip to main content

IRingSelectMenuMethods

Trait IRingSelectMenuMethods 

Source
pub trait IRingSelectMenuMethods: IRingSelectMenu {
Show 16 methods // Provided methods fn rebuild_menu( self, display_index: impl Into<i32>, equip_unit: impl Into<Unit>, ) { ... } fn save_select(self) { ... } fn is_empty_common(self) -> bool { ... } fn get_display_index(self) -> i32 { ... } fn ctor( self, menu_item_list: impl Into<List_1<BasicMenuItem>>, menu_content: impl Into<RingSelectMenuContent>, unit: impl Into<Unit>, status_setter: impl Into<UnitStatusSetter>, ring_select_root: impl Into<RingSelectRoot>, page: impl Into<i32>, ) { ... } fn get_name(self) -> Il2CppString { ... } fn b_call(self) -> BasicMenu_Result { ... } fn x_call(self) -> BasicMenu_Result { ... } fn custom_call(self) -> BasicMenu_Result { ... } fn get_unit(self) -> Unit { ... } fn update_status(self) { ... } fn get_page_num(self) -> i32 { ... } fn get_page_god_gid(self, index: impl Into<i32>) -> Il2CppString { ... } fn get_select_page(self) -> i32 { ... } fn get_select_ring(self) -> UnitRing { ... } fn get_select_god(self) -> GodUnit { ... }
}

Provided Methods§

Source

fn rebuild_menu( self, display_index: impl Into<i32>, equip_unit: impl Into<Unit>, )

RebuildMenu(i32, crate::app::unit::Unit) overload

Source

fn save_select(self)

SaveSelect() overload

Source

fn is_empty_common(self) -> bool

IsEmptyCommon() overload

Source

fn get_display_index(self) -> i32

GetDisplayIndex() overload

Source

fn ctor( self, menu_item_list: impl Into<List_1<BasicMenuItem>>, menu_content: impl Into<RingSelectMenuContent>, unit: impl Into<Unit>, status_setter: impl Into<UnitStatusSetter>, ring_select_root: impl Into<RingSelectRoot>, page: impl Into<i32>, )

.ctor(crate::system::collections::generic::list_1::List_1<crate::app::basicmenuitem::BasicMenuItem>, crate::app::ringselectmenucontent::RingSelectMenuContent, crate::app::unit::Unit, crate::app::unitstatussetter::UnitStatusSetter, crate::app::ringselectroot::RingSelectRoot, i32) overload

Source

fn get_name(self) -> Il2CppString

GetName() overload

Source

fn b_call(self) -> BasicMenu_Result

BCall() overload

Source

fn x_call(self) -> BasicMenu_Result

XCall() overload

Source

fn custom_call(self) -> BasicMenu_Result

CustomCall() overload

Source

fn get_unit(self) -> Unit

GetUnit() overload

Source

fn update_status(self)

UpdateStatus() overload

Source

fn get_page_num(self) -> i32

GetPageNum() overload

Source

fn get_page_god_gid(self, index: impl Into<i32>) -> Il2CppString

GetPageGodGid(i32) overload

Source

fn get_select_page(self) -> i32

GetSelectPage() overload

Source

fn get_select_ring(self) -> UnitRing

GetSelectRing() overload

Source

fn get_select_god(self) -> GodUnit

GetSelectGod() 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> IRingSelectMenuMethods for __T

Available on crate feature app-ringselectmenu only.