pub trait IFishingRodSelectMenuMethods: IFishingRodSelectMenu {
// Provided methods
fn get_m_decide_event_handler(
self,
) -> FishingRodSelectMenu_DecideEventHandler { ... }
fn set_m_decide_event_handler(
self,
value: impl Into<FishingRodSelectMenu_DecideEventHandler>,
) { ... }
fn b_call(self) -> BasicMenu_Result { ... }
fn x_call(self) -> BasicMenu_Result { ... }
fn ctor(
self,
menu_item_list: impl Into<List_1<BasicMenuItem>>,
menu_content: impl Into<BasicMenuContent>,
initial_selected: impl Into<StickType>,
event_handler: impl Into<FishingRodSelectMenu_DecideEventHandler>,
) { ... }
fn get_name(self) -> Il2CppString { ... }
fn on_close(self) { ... }
fn after_build(self) { ... }
}Provided Methods§
Sourcefn get_m_decide_event_handler(self) -> FishingRodSelectMenu_DecideEventHandler
fn get_m_decide_event_handler(self) -> FishingRodSelectMenu_DecideEventHandler
get_m_DecideEventHandler() overload
Sourcefn set_m_decide_event_handler(
self,
value: impl Into<FishingRodSelectMenu_DecideEventHandler>,
)
fn set_m_decide_event_handler( self, value: impl Into<FishingRodSelectMenu_DecideEventHandler>, )
set_m_DecideEventHandler(crate::app::fishingrodselectmenu::FishingRodSelectMenu_DecideEventHandler) overload
Sourcefn b_call(self) -> BasicMenu_Result
fn b_call(self) -> BasicMenu_Result
BCall() overload
Sourcefn x_call(self) -> BasicMenu_Result
fn x_call(self) -> BasicMenu_Result
XCall() overload
Sourcefn ctor(
self,
menu_item_list: impl Into<List_1<BasicMenuItem>>,
menu_content: impl Into<BasicMenuContent>,
initial_selected: impl Into<StickType>,
event_handler: impl Into<FishingRodSelectMenu_DecideEventHandler>,
)
fn ctor( self, menu_item_list: impl Into<List_1<BasicMenuItem>>, menu_content: impl Into<BasicMenuContent>, initial_selected: impl Into<StickType>, event_handler: impl Into<FishingRodSelectMenu_DecideEventHandler>, )
.ctor(crate::system::collections::generic::list_1::List_1<crate::app::basicmenuitem::BasicMenuItem>, crate::app::basicmenucontent::BasicMenuContent, crate::app::fishing::sticktype::StickType, crate::app::fishingrodselectmenu::FishingRodSelectMenu_DecideEventHandler) overload
Sourcefn get_name(self) -> Il2CppString
fn get_name(self) -> Il2CppString
GetName() overload
Sourcefn after_build(self)
fn after_build(self)
AfterBuild() 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: IFishingRodSelectMenu> IFishingRodSelectMenuMethods for __T
Available on crate feature
app-fishingrodselectmenu only.