pub trait IAmiiboAccessoryMenuMethods: IAmiiboAccessoryMenu {
// Provided methods
fn ctor(
self,
menu_item_list: impl Into<List_1<BasicMenuItem>>,
menu_content: impl Into<AmiiboAccessoryMenuContent>,
) { ... }
fn on_resume(self) { ... }
fn get_name(self) -> Il2CppString { ... }
fn b_call(self) -> BasicMenu_Result { ... }
fn custom_call(self) -> BasicMenu_Result { ... }
fn on_close(self) { ... }
fn set_menu_info(self, data: impl Into<AccessoryData>) { ... }
fn buy(self) { ... }
fn exchange_remain_ticket(self) { ... }
}Provided Methods§
Sourcefn ctor(
self,
menu_item_list: impl Into<List_1<BasicMenuItem>>,
menu_content: impl Into<AmiiboAccessoryMenuContent>,
)
fn ctor( self, menu_item_list: impl Into<List_1<BasicMenuItem>>, menu_content: impl Into<AmiiboAccessoryMenuContent>, )
.ctor(crate::system::collections::generic::list_1::List_1<crate::app::basicmenuitem::BasicMenuItem>, crate::app::amiiboaccessorymenucontent::AmiiboAccessoryMenuContent) overload
Sourcefn get_name(self) -> Il2CppString
fn get_name(self) -> Il2CppString
GetName() overload
Sourcefn b_call(self) -> BasicMenu_Result
fn b_call(self) -> BasicMenu_Result
BCall() overload
Sourcefn custom_call(self) -> BasicMenu_Result
fn custom_call(self) -> BasicMenu_Result
CustomCall() overload
SetMenuInfo(crate::app::accessorydata::AccessoryData) overload
Sourcefn exchange_remain_ticket(self)
fn exchange_remain_ticket(self)
ExchangeRemainTicket() 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: IAmiiboAccessoryMenu> IAmiiboAccessoryMenuMethods for __T
Available on crate feature
app-amiiboaccessorymenu only.