pub trait IFuncItemMethods: IFuncItem {
// Provided methods
fn ctor(self, name: impl Into<Il2CppString>, func: impl Into<FuncItem_Func>) { ... }
fn a_call(self) -> MenuItem_Result { ... }
}Provided Methods§
Sourcefn ctor(self, name: impl Into<Il2CppString>, func: impl Into<FuncItem_Func>)
fn ctor(self, name: impl Into<Il2CppString>, func: impl Into<FuncItem_Func>)
.ctor(::unity::Il2CppString, crate::app::funcitem::FuncItem_Func) overload
Sourcefn a_call(self) -> MenuItem_Result
fn a_call(self) -> MenuItem_Result
ACall() 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: IFuncItem> IFuncItemMethods for __T
Available on crate feature
app-funcitem only.