pub trait IAmiiboTopMenuMethods: IAmiiboTopMenu {
// Provided methods
fn get_m_decide_event_handler(self) -> AmiiboTopMenu_DecideEventHandler { ... }
fn set_m_decide_event_handler(
self,
value: impl Into<AmiiboTopMenu_DecideEventHandler>,
) { ... }
fn b_call(self) -> BasicMenu_Result { ... }
fn ctor(
self,
menu_item_list: impl Into<List_1<BasicMenuItem>>,
menu_content: impl Into<BasicMenuContent>,
initial_selected: impl Into<AmiiboTopMenu_MenuResult>,
event_handler: impl Into<AmiiboTopMenu_DecideEventHandler>,
) { ... }
fn get_name(self) -> Il2CppString { ... }
fn on_close(self) { ... }
}Provided Methods§
Sourcefn get_m_decide_event_handler(self) -> AmiiboTopMenu_DecideEventHandler
fn get_m_decide_event_handler(self) -> AmiiboTopMenu_DecideEventHandler
get_m_DecideEventHandler() overload
Sourcefn set_m_decide_event_handler(
self,
value: impl Into<AmiiboTopMenu_DecideEventHandler>,
)
fn set_m_decide_event_handler( self, value: impl Into<AmiiboTopMenu_DecideEventHandler>, )
set_m_DecideEventHandler(crate::app::amiibotopmenu::AmiiboTopMenu_DecideEventHandler) overload
Sourcefn b_call(self) -> BasicMenu_Result
fn b_call(self) -> BasicMenu_Result
BCall() overload
Sourcefn ctor(
self,
menu_item_list: impl Into<List_1<BasicMenuItem>>,
menu_content: impl Into<BasicMenuContent>,
initial_selected: impl Into<AmiiboTopMenu_MenuResult>,
event_handler: impl Into<AmiiboTopMenu_DecideEventHandler>,
)
fn ctor( self, menu_item_list: impl Into<List_1<BasicMenuItem>>, menu_content: impl Into<BasicMenuContent>, initial_selected: impl Into<AmiiboTopMenu_MenuResult>, event_handler: impl Into<AmiiboTopMenu_DecideEventHandler>, )
.ctor(crate::system::collections::generic::list_1::List_1<crate::app::basicmenuitem::BasicMenuItem>, crate::app::basicmenucontent::BasicMenuContent, crate::app::amiibotopmenu::AmiiboTopMenu_MenuResult, crate::app::amiibotopmenu::AmiiboTopMenu_DecideEventHandler) overload
Sourcefn get_name(self) -> Il2CppString
fn get_name(self) -> Il2CppString
GetName() 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: IAmiiboTopMenu> IAmiiboTopMenuMethods for __T
Available on crate feature
app-amiibotopmenu only.