pub trait IRefineShopExchangeTargetMenuMethods: IRefineShopExchangeTargetMenu {
// Provided methods
fn get_m_menu_item_is_enough_material(self) -> bool { ... }
fn set_m_menu_item_is_enough_material(self, value: impl Into<bool>) { ... }
fn get_m_menu_item_is_max_material(self) -> bool { ... }
fn set_m_menu_item_is_max_material(self, value: impl Into<bool>) { ... }
fn ctor(
self,
menu_item_list: impl Into<List_1<BasicMenuItem>>,
menu_content: impl Into<RefineShopExchangeTargetMenuContent>,
initial_select_index: impl Into<i32>,
close_event_handler: impl Into<RefineShopExchangeTargetMenu_CloseEventHandler>,
) { ... }
fn get_name(self) -> Il2CppString { ... }
fn update_content(self, menu_item_is_enabled: impl Into<bool>) { ... }
fn on_close(self) { ... }
fn on_dispose(self) { ... }
}Provided Methods§
get_m_MenuItemIsEnoughMaterial() overload
set_m_MenuItemIsEnoughMaterial(bool) overload
get_m_MenuItemIsMaxMaterial() overload
set_m_MenuItemIsMaxMaterial(bool) overload
Sourcefn ctor(
self,
menu_item_list: impl Into<List_1<BasicMenuItem>>,
menu_content: impl Into<RefineShopExchangeTargetMenuContent>,
initial_select_index: impl Into<i32>,
close_event_handler: impl Into<RefineShopExchangeTargetMenu_CloseEventHandler>,
)
fn ctor( self, menu_item_list: impl Into<List_1<BasicMenuItem>>, menu_content: impl Into<RefineShopExchangeTargetMenuContent>, initial_select_index: impl Into<i32>, close_event_handler: impl Into<RefineShopExchangeTargetMenu_CloseEventHandler>, )
.ctor(crate::system::collections::generic::list_1::List_1<crate::app::basicmenuitem::BasicMenuItem>, crate::app::refineshopexchangetargetmenucontent::RefineShopExchangeTargetMenuContent, i32, crate::app::refineshopexchangetargetmenu::RefineShopExchangeTargetMenu_CloseEventHandler) overload
Sourcefn get_name(self) -> Il2CppString
fn get_name(self) -> Il2CppString
GetName() overload
Sourcefn update_content(self, menu_item_is_enabled: impl Into<bool>)
fn update_content(self, menu_item_is_enabled: impl Into<bool>)
UpdateContent(bool) overload
Sourcefn on_dispose(self)
fn on_dispose(self)
OnDispose() 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: IRefineShopExchangeTargetMenu> IRefineShopExchangeTargetMenuMethods for __T
Available on crate feature
app-refineshopexchangetargetmenu only.