pub trait IScriptMenu_EventMenuItem: IMenuItem {
// Provided methods
fn m_mid(self) -> Il2CppString { ... }
fn set_m_mid(self, value: Il2CppString) { ... }
fn m_function(self) -> DynValue { ... }
fn set_m_function(self, value: DynValue) { ... }
fn m_args(self) -> DynValue { ... }
fn set_m_args(self, value: DynValue) { ... }
fn m_select_function(self) -> DynValue { ... }
fn set_m_select_function(self, value: DynValue) { ... }
fn m_select_args(self) -> DynValue { ... }
fn set_m_select_args(self, value: DynValue) { ... }
fn m_condition(self) -> ScriptUtil_MenuCondtion { ... }
fn set_m_condition(self, value: ScriptUtil_MenuCondtion) { ... }
}Provided Methods§
fn m_mid(self) -> Il2CppString
fn set_m_mid(self, value: Il2CppString)
fn m_function(self) -> DynValue
fn set_m_function(self, value: DynValue)
fn m_args(self) -> DynValue
fn set_m_args(self, value: DynValue)
fn m_select_function(self) -> DynValue
fn set_m_select_function(self, value: DynValue)
fn m_select_args(self) -> DynValue
fn set_m_select_args(self, value: DynValue)
fn m_condition(self) -> ScriptUtil_MenuCondtion
fn set_m_condition(self, value: ScriptUtil_MenuCondtion)
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.