pub trait IMapSystemMenuMethods: IMapSystemMenu {
// Provided methods
fn get_flag_id(self) -> Il2CppString { ... }
fn ctor(
self,
menu_item_list: impl Into<List_1<BasicMenuItem>>,
sortie_top_menu_content: impl Into<SortieTopMenuContent>,
) { ... }
fn get_name(self) -> Il2CppString { ... }
fn on_close(self) { ... }
fn help_on(self) { ... }
}Provided Methods§
Sourcefn get_flag_id(self) -> Il2CppString
fn get_flag_id(self) -> Il2CppString
get_FlagID() overload
Sourcefn ctor(
self,
menu_item_list: impl Into<List_1<BasicMenuItem>>,
sortie_top_menu_content: impl Into<SortieTopMenuContent>,
)
fn ctor( self, menu_item_list: impl Into<List_1<BasicMenuItem>>, sortie_top_menu_content: impl Into<SortieTopMenuContent>, )
.ctor(crate::system::collections::generic::list_1::List_1<crate::app::basicmenuitem::BasicMenuItem>, crate::app::sortietopmenucontent::SortieTopMenuContent) overload
Sourcefn get_name(self) -> Il2CppString
fn get_name(self) -> Il2CppString
GetName() 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: IMapSystemMenu> IMapSystemMenuMethods for __T
Available on crate feature
app-mapsystemmenu only.