pub trait IMainMenuSequence_MenuSequenceBaseMethods: IMainMenuSequence_MenuSequenceBase {
Show 15 methods
// Provided methods
fn get_layout_prefab_path(self) -> Il2CppString { ... }
fn is_title_bar_enable(self) -> bool { ... }
fn get_title_bar_name(self) -> Il2CppString { ... }
fn get_title_bar_help(self) -> Il2CppString { ... }
fn get_title_bar_key_help_id(self) -> Il2CppString { ... }
fn load_layout_prefab_async(self) { ... }
fn unload_layout_prefab(self) { ... }
fn is_loading_layout_prefab(self) -> bool { ... }
fn create_layout_prefab(self) { ... }
fn destroy_layout_prefab(self) { ... }
fn set_title_bar_value(self) { ... }
fn open_title_bar(self) { ... }
fn create_menu_bind(self, super_: impl Into<ProcInst>) { ... }
fn get_proc_desc(self) -> Array<ProcDesc> { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_layout_prefab_path(self) -> Il2CppString
fn get_layout_prefab_path(self) -> Il2CppString
GetLayoutPrefabPath() overload
Sourcefn is_title_bar_enable(self) -> bool
fn is_title_bar_enable(self) -> bool
IsTitleBarEnable() overload
Sourcefn get_title_bar_name(self) -> Il2CppString
fn get_title_bar_name(self) -> Il2CppString
GetTitleBarName() overload
Sourcefn get_title_bar_help(self) -> Il2CppString
fn get_title_bar_help(self) -> Il2CppString
GetTitleBarHelp() overload
Sourcefn get_title_bar_key_help_id(self) -> Il2CppString
fn get_title_bar_key_help_id(self) -> Il2CppString
GetTitleBarKeyHelpId() overload
Sourcefn load_layout_prefab_async(self)
fn load_layout_prefab_async(self)
LoadLayoutPrefabAsync() overload
Sourcefn unload_layout_prefab(self)
fn unload_layout_prefab(self)
UnloadLayoutPrefab() overload
Sourcefn is_loading_layout_prefab(self) -> bool
fn is_loading_layout_prefab(self) -> bool
IsLoadingLayoutPrefab() overload
Sourcefn create_layout_prefab(self)
fn create_layout_prefab(self)
CreateLayoutPrefab() overload
Sourcefn destroy_layout_prefab(self)
fn destroy_layout_prefab(self)
DestroyLayoutPrefab() overload
Sourcefn set_title_bar_value(self)
fn set_title_bar_value(self)
SetTitleBarValue() overload
Sourcefn open_title_bar(self)
fn open_title_bar(self)
OpenTitleBar() overload
CreateMenuBind(crate::app::procinst::ProcInst) overload
Sourcefn get_proc_desc(self) -> Array<ProcDesc>
fn get_proc_desc(self) -> Array<ProcDesc>
GetProcDesc() 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: IMainMenuSequence_MenuSequenceBase> IMainMenuSequence_MenuSequenceBaseMethods for __T
Available on crate feature
app-mainmenusequence only.