pub trait IGroupBeginItemMethods: IGroupBeginItem {
// Provided methods
fn ctor(
self,
name: impl Into<Il2CppString>,
state: impl Into<MenuItem_State>,
) { ... }
fn ctor_2(
self,
name: impl Into<Il2CppString>,
english: impl Into<Il2CppString>,
state: impl Into<MenuItem_State>,
) { ... }
fn get_name(self) -> Il2CppString { ... }
fn get_help(self) -> Il2CppString { ... }
fn get_kind(self) -> MenuItem_Kind { ... }
fn get_font_color(self) -> Color { ... }
fn a_call(self) -> MenuItem_Result { ... }
fn left_call(self) -> MenuItem_Result { ... }
fn right_call(self) -> MenuItem_Result { ... }
fn change_state(self, state: impl Into<MenuItem_State>) { ... }
}Provided Methods§
Sourcefn ctor(self, name: impl Into<Il2CppString>, state: impl Into<MenuItem_State>)
fn ctor(self, name: impl Into<Il2CppString>, state: impl Into<MenuItem_State>)
.ctor(::unity::Il2CppString, crate::app::menuitem::MenuItem_State) overload
Sourcefn ctor_2(
self,
name: impl Into<Il2CppString>,
english: impl Into<Il2CppString>,
state: impl Into<MenuItem_State>,
)
fn ctor_2( self, name: impl Into<Il2CppString>, english: impl Into<Il2CppString>, state: impl Into<MenuItem_State>, )
.ctor(::unity::Il2CppString, ::unity::Il2CppString, crate::app::menuitem::MenuItem_State) overload
Sourcefn get_name(self) -> Il2CppString
fn get_name(self) -> Il2CppString
GetName() overload
Sourcefn get_help(self) -> Il2CppString
fn get_help(self) -> Il2CppString
GetHelp() overload
Sourcefn get_kind(self) -> MenuItem_Kind
fn get_kind(self) -> MenuItem_Kind
GetKind() overload
Sourcefn get_font_color(self) -> Color
fn get_font_color(self) -> Color
GetFontColor() overload
Sourcefn a_call(self) -> MenuItem_Result
fn a_call(self) -> MenuItem_Result
ACall() overload
Sourcefn left_call(self) -> MenuItem_Result
fn left_call(self) -> MenuItem_Result
LeftCall() overload
Sourcefn right_call(self) -> MenuItem_Result
fn right_call(self) -> MenuItem_Result
RightCall() overload
Sourcefn change_state(self, state: impl Into<MenuItem_State>)
fn change_state(self, state: impl Into<MenuItem_State>)
ChangeState(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: IGroupBeginItem> IGroupBeginItemMethods for __T
Available on crate feature
app-groupbeginitem only.