pub trait IWellItemSelectMenuContentMethods: IWellItemSelectMenuContent {
Show 14 methods
// Provided methods
fn awake(self) { ... }
fn on_destroy(self) { ... }
fn init_menu_accessory_content(self, menu: impl Into<BasicMenu>) { ... }
fn open_anime(self) { ... }
fn close_anime(self) { ... }
fn get_menu_item_content_max(self) -> i32 { ... }
fn calc_cursor_moved_pos_y(self, menu_item_index: impl Into<i32>) -> f32 { ... }
fn update_selected_item_list(
self,
list: impl Into<List_1<BasicItemMenuItem>>,
) { ... }
fn update_expected_star(self, expected: impl Into<i32>) { ... }
fn update_item_help(self, unit: impl Into<Unit>, item: impl Into<UnitItem>) { ... }
fn set_selected_item_kind_index(self, index: impl Into<i32>) { ... }
fn set_stock_value(self, value: impl Into<i32>) { ... }
fn set_stock_value_max(self, value: impl Into<i32>) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn on_destroy(self)
fn on_destroy(self)
OnDestroy() overload
InitMenuAccessoryContent(crate::app::basicmenu::BasicMenu) overload
Sourcefn open_anime(self)
fn open_anime(self)
OpenAnime() overload
Sourcefn close_anime(self)
fn close_anime(self)
CloseAnime() overload
GetMenuItemContentMax() overload
Sourcefn calc_cursor_moved_pos_y(self, menu_item_index: impl Into<i32>) -> f32
fn calc_cursor_moved_pos_y(self, menu_item_index: impl Into<i32>) -> f32
CalcCursorMovedPosY(i32) overload
Sourcefn update_selected_item_list(self, list: impl Into<List_1<BasicItemMenuItem>>)
fn update_selected_item_list(self, list: impl Into<List_1<BasicItemMenuItem>>)
UpdateSelectedItemList(crate::system::collections::generic::list_1::List_1<crate::app::basicitemmenuitem::BasicItemMenuItem>) overload
Sourcefn update_expected_star(self, expected: impl Into<i32>)
fn update_expected_star(self, expected: impl Into<i32>)
UpdateExpectedStar(i32) overload
Sourcefn update_item_help(self, unit: impl Into<Unit>, item: impl Into<UnitItem>)
fn update_item_help(self, unit: impl Into<Unit>, item: impl Into<UnitItem>)
UpdateItemHelp(crate::app::unit::Unit, crate::app::unititem::UnitItem) overload
Sourcefn set_selected_item_kind_index(self, index: impl Into<i32>)
fn set_selected_item_kind_index(self, index: impl Into<i32>)
SetSelectedItemKindIndex(i32) overload
Sourcefn set_stock_value(self, value: impl Into<i32>)
fn set_stock_value(self, value: impl Into<i32>)
SetStockValue(i32) overload
Sourcefn set_stock_value_max(self, value: impl Into<i32>)
fn set_stock_value_max(self, value: impl Into<i32>)
SetStockValueMax(i32) 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§
impl<__T: IWellItemSelectMenuContent> IWellItemSelectMenuContentMethods for __T
Available on crate feature
app-wellitemselectmenucontent only.