pub trait ITutorialListSelectMenuItemMethods: ITutorialListSelectMenuItem {
Show 16 methods
// Provided methods
fn ctor(
self,
tutorial_id: impl Into<Il2CppString>,
root: impl Into<TutorialListRoot>,
) { ... }
fn on_build(self) { ... }
fn on_build_menu_item_content(self) { ... }
fn on_select(self) { ... }
fn on_deselect(self) { ... }
fn tick(self) { ... }
fn b_call(self) -> BasicMenu_Result { ... }
fn custom_call(self) -> BasicMenu_Result { ... }
fn init_param(self) { ... }
fn init_color(self) { ... }
fn update_text(self) { ... }
fn turn_tutorial(self) { ... }
fn set_tutorial_image(self) { ... }
fn set_tutorial_text(self) { ... }
fn set_arrow(self) { ... }
fn get_is_unread(self) -> bool { ... }
}Provided Methods§
Sourcefn ctor(
self,
tutorial_id: impl Into<Il2CppString>,
root: impl Into<TutorialListRoot>,
)
fn ctor( self, tutorial_id: impl Into<Il2CppString>, root: impl Into<TutorialListRoot>, )
.ctor(::unity::Il2CppString, crate::root::tutoriallistroot::TutorialListRoot) overload
OnBuildMenuItemContent() overload
Sourcefn on_deselect(self)
fn on_deselect(self)
OnDeselect() 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
Sourcefn init_param(self)
fn init_param(self)
InitParam() overload
Sourcefn init_color(self)
fn init_color(self)
InitColor() overload
Sourcefn update_text(self)
fn update_text(self)
UpdateText() overload
Sourcefn turn_tutorial(self)
fn turn_tutorial(self)
TurnTutorial() overload
Sourcefn set_tutorial_image(self)
fn set_tutorial_image(self)
SetTutorialImage() overload
Sourcefn set_tutorial_text(self)
fn set_tutorial_text(self)
SetTutorialText() overload
Sourcefn get_is_unread(self) -> bool
fn get_is_unread(self) -> bool
get_IsUnread() 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: ITutorialListSelectMenuItem> ITutorialListSelectMenuItemMethods for __T
Available on crate feature
root-tutoriallistselectmenuitem only.