Skip to main content

IGroupItemScopeMethods

Trait IGroupItemScopeMethods 

Source
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§

Source

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

Source

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

Source

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

Source

fn finalize(self)

Finalize() overload

Source

fn dispose(self)

Dispose() 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§

Source§

impl<__T: IGroupItemScope> IGroupItemScopeMethods for __T

Available on crate feature app-groupitemscope only.