Skip to main content

ISortieTradeItemMenuMethods

Trait ISortieTradeItemMenuMethods 

Source
pub trait ISortieTradeItemMenuMethods: ISortieTradeItemMenu {
Show 29 methods // Provided methods fn get_m_common_index(self) -> i32 { ... } fn set_m_common_index(self, value: impl Into<i32>) { ... } fn ctor( self, menu_item_list: impl Into<List_1<BasicMenuItem>>, menu_content: impl Into<SortieTradeItemMenuContent>, ) { ... } fn rebuild_menu(self) { ... } fn get_name(self) -> Il2CppString { ... } fn key_up(self, is_trigger: impl Into<bool>) { ... } fn key_down(self, is_trigger: impl Into<bool>) { ... } fn key_left(self, is_trigger: impl Into<bool>) { ... } fn key_right(self, is_trigger: impl Into<bool>) { ... } fn get_unit(self) -> Unit { ... } fn set_unit(self, unit: impl Into<Unit>) { ... } fn set_reciever_unit(self, unit: impl Into<Unit>) { ... } fn get_select_item(self) -> UnitItem { ... } fn clear_select(self) { ... } fn set_select(self, select_no: impl Into<i32>) { ... } fn set_first_select_at_select_index(self) { ... } fn get_first_select(self) -> i32 { ... } fn get_second_select(self) -> i32 { ... } fn is_first_select( self, menu_item: impl Into<SortieTradeItemMenuItem>, ) -> bool { ... } fn get_first_select_menu_item(self) -> SortieTradeItemMenuItem { ... } fn show_cursor(self, is_show: impl Into<bool>) { ... } fn set_initial_select(self) { ... } fn move_front_cursor_from(self, another_menu: impl Into<BasicMenu>) { ... } fn set_select_index_at_first_select(self) { ... } fn set_select_index_ex(self, common_index: impl Into<i32>) { ... } fn set_select_index_for_second_select(self, another_index: impl Into<i32>) { ... } fn enable_to_select_blank(self, enabled: impl Into<bool>) { ... } fn set_selectable_blank_to_disable(self, disabled: impl Into<bool>) { ... } fn is_empty(self) -> bool { ... }
}

Provided Methods§

Source

fn get_m_common_index(self) -> i32

get_m_CommonIndex() overload

Source

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

set_m_CommonIndex(i32) overload

Source

fn ctor( self, menu_item_list: impl Into<List_1<BasicMenuItem>>, menu_content: impl Into<SortieTradeItemMenuContent>, )

.ctor(crate::system::collections::generic::list_1::List_1<crate::app::basicmenuitem::BasicMenuItem>, crate::app::sortietradeitemmenucontent::SortieTradeItemMenuContent) overload

Source

fn rebuild_menu(self)

RebuildMenu() overload

Source

fn get_name(self) -> Il2CppString

GetName() overload

Source

fn key_up(self, is_trigger: impl Into<bool>)

KeyUp(bool) overload

Source

fn key_down(self, is_trigger: impl Into<bool>)

KeyDown(bool) overload

Source

fn key_left(self, is_trigger: impl Into<bool>)

KeyLeft(bool) overload

Source

fn key_right(self, is_trigger: impl Into<bool>)

KeyRight(bool) overload

Source

fn get_unit(self) -> Unit

GetUnit() overload

Source

fn set_unit(self, unit: impl Into<Unit>)

SetUnit(crate::app::unit::Unit) overload

Source

fn set_reciever_unit(self, unit: impl Into<Unit>)

SetRecieverUnit(crate::app::unit::Unit) overload

Source

fn get_select_item(self) -> UnitItem

GetSelectItem() overload

Source

fn clear_select(self)

ClearSelect() overload

Source

fn set_select(self, select_no: impl Into<i32>)

SetSelect(i32) overload

Source

fn set_first_select_at_select_index(self)

SetFirstSelectAtSelectIndex() overload

Source

fn get_first_select(self) -> i32

GetFirstSelect() overload

Source

fn get_second_select(self) -> i32

GetSecondSelect() overload

Source

fn is_first_select(self, menu_item: impl Into<SortieTradeItemMenuItem>) -> bool

IsFirstSelect(crate::app::sortietradeitemmenuitem::SortieTradeItemMenuItem) overload

Source

fn get_first_select_menu_item(self) -> SortieTradeItemMenuItem

GetFirstSelectMenuItem() overload

Source

fn show_cursor(self, is_show: impl Into<bool>)

ShowCursor(bool) overload

Source

fn set_initial_select(self)

SetInitialSelect() overload

Source

fn move_front_cursor_from(self, another_menu: impl Into<BasicMenu>)

MoveFrontCursorFrom(crate::app::basicmenu::BasicMenu) overload

Source

fn set_select_index_at_first_select(self)

SetSelectIndexAtFirstSelect() overload

Source

fn set_select_index_ex(self, common_index: impl Into<i32>)

SetSelectIndexEx(i32) overload

Source

fn set_select_index_for_second_select(self, another_index: impl Into<i32>)

SetSelectIndexForSecondSelect(i32) overload

Source

fn enable_to_select_blank(self, enabled: impl Into<bool>)

EnableToSelectBlank(bool) overload

Source

fn set_selectable_blank_to_disable(self, disabled: impl Into<bool>)

SetSelectableBlankToDisable(bool) overload

Source

fn is_empty(self) -> bool

IsEmpty() 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: ISortieTradeItemMenu> ISortieTradeItemMenuMethods for __T

Available on crate feature app-sortietradeitemmenu only.