pub trait IAnimalOutsideMenuMethods: IAnimalOutsideMenu {
Show 16 methods
// Provided methods
fn get_is_sub(self) -> bool { ... }
fn set_is_sub(self, value: impl Into<bool>) { ... }
fn ctor(
self,
menu_item_list: impl Into<List_1<BasicMenuItem>>,
menu_content: impl Into<BasicMenuContent>,
) { ... }
fn rebuild_menu(self) { ... }
fn set_last_menu_blank(self, is_last_menu_blank: impl Into<bool>) { ... }
fn get_active_index(self) -> i32 { ... }
fn get_last_index(self) -> i32 { ... }
fn set_last_index(self) { ... }
fn set_start_index(self) { ... }
fn get_name(self) -> Il2CppString { ... }
fn public_build(self) { ... }
fn public_rebuild(self) { ... }
fn public_update(self) { ... }
fn suspend(self) { ... }
fn resume(self) { ... }
fn key_right(self, is_trigger: impl Into<bool>) { ... }
}Provided Methods§
Sourcefn get_is_sub(self) -> bool
fn get_is_sub(self) -> bool
get_IsSub() overload
Sourcefn set_is_sub(self, value: impl Into<bool>)
fn set_is_sub(self, value: impl Into<bool>)
set_IsSub(bool) overload
Sourcefn ctor(
self,
menu_item_list: impl Into<List_1<BasicMenuItem>>,
menu_content: impl Into<BasicMenuContent>,
)
fn ctor( self, menu_item_list: impl Into<List_1<BasicMenuItem>>, menu_content: impl Into<BasicMenuContent>, )
.ctor(crate::system::collections::generic::list_1::List_1<crate::app::basicmenuitem::BasicMenuItem>, crate::app::basicmenucontent::BasicMenuContent) overload
RebuildMenu() overload
SetLastMenuBlank(bool) overload
Sourcefn get_active_index(self) -> i32
fn get_active_index(self) -> i32
GetActiveIndex() overload
Sourcefn get_last_index(self) -> i32
fn get_last_index(self) -> i32
GetLastIndex() overload
Sourcefn set_last_index(self)
fn set_last_index(self)
SetLastIndex() overload
Sourcefn set_start_index(self)
fn set_start_index(self)
SetStartIndex() overload
Sourcefn get_name(self) -> Il2CppString
fn get_name(self) -> Il2CppString
GetName() overload
Sourcefn public_build(self)
fn public_build(self)
PublicBuild() overload
Sourcefn public_rebuild(self)
fn public_rebuild(self)
PublicRebuild() overload
Sourcefn public_update(self)
fn public_update(self)
PublicUpdate() 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: IAnimalOutsideMenu> IAnimalOutsideMenuMethods for __T
Available on crate feature
app-animaloutsidemenu only.