pub trait IGroupItemScopeMethods: IGroupItemScope {
// Provided methods
fn ctor(
self,
menu: impl Into<DebugMenu>,
name: impl Into<Il2CppString>,
state: impl Into<MenuItem_State>,
) { ... }
fn ctor_2(
self,
menu: impl Into<DebugMenu>,
name: impl Into<Il2CppString>,
english: impl Into<Il2CppString>,
state: impl Into<MenuItem_State>,
) { ... }
fn setup(
self,
menu: impl Into<DebugMenu>,
name: impl Into<Il2CppString>,
english: impl Into<Il2CppString>,
state: impl Into<MenuItem_State>,
) { ... }
fn finalize(self) { ... }
fn dispose(self) { ... }
}Provided Methods§
Sourcefn ctor(
self,
menu: impl Into<DebugMenu>,
name: impl Into<Il2CppString>,
state: impl Into<MenuItem_State>,
)
fn ctor( self, menu: impl Into<DebugMenu>, name: impl Into<Il2CppString>, state: impl Into<MenuItem_State>, )
.ctor(crate::app::debugmenu::DebugMenu, ::unity::Il2CppString, crate::app::menuitem::MenuItem_State) overload
Sourcefn ctor_2(
self,
menu: impl Into<DebugMenu>,
name: impl Into<Il2CppString>,
english: impl Into<Il2CppString>,
state: impl Into<MenuItem_State>,
)
fn ctor_2( self, menu: impl Into<DebugMenu>, name: impl Into<Il2CppString>, english: impl Into<Il2CppString>, state: impl Into<MenuItem_State>, )
.ctor(crate::app::debugmenu::DebugMenu, ::unity::Il2CppString, ::unity::Il2CppString, crate::app::menuitem::MenuItem_State) overload
Sourcefn setup(
self,
menu: impl Into<DebugMenu>,
name: impl Into<Il2CppString>,
english: impl Into<Il2CppString>,
state: impl Into<MenuItem_State>,
)
fn setup( self, menu: impl Into<DebugMenu>, name: impl Into<Il2CppString>, english: impl Into<Il2CppString>, state: impl Into<MenuItem_State>, )
Setup(crate::app::debugmenu::DebugMenu, ::unity::Il2CppString, ::unity::Il2CppString, crate::app::menuitem::MenuItem_State) 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: IGroupItemScope> IGroupItemScopeMethods for __T
Available on crate feature
app-groupitemscope only.