pub trait IEventDataMethods: IEventData {
Show 20 methods
// Provided methods
fn get_command(self) -> EventData_Commands { ... }
fn set_command(self, value: impl Into<EventData_Commands>) { ... }
fn get_arg1(self) -> Il2CppString { ... }
fn set_arg1(self, value: impl Into<Il2CppString>) { ... }
fn get_arg2(self) -> Il2CppString { ... }
fn set_arg2(self, value: impl Into<Il2CppString>) { ... }
fn get_arg3(self) -> Il2CppString { ... }
fn set_arg3(self, value: impl Into<Il2CppString>) { ... }
fn get_arg4(self) -> Il2CppString { ... }
fn set_arg4(self, value: impl Into<Il2CppString>) { ... }
fn get_arg5(self) -> Il2CppString { ... }
fn set_arg5(self, value: impl Into<Il2CppString>) { ... }
fn get_arg6(self) -> Il2CppString { ... }
fn set_arg6(self, value: impl Into<Il2CppString>) { ... }
fn get_arg7(self) -> Il2CppString { ... }
fn set_arg7(self, value: impl Into<Il2CppString>) { ... }
fn get_condition(self) -> Il2CppString { ... }
fn set_condition(self, value: impl Into<Il2CppString>) { ... }
fn get_debug_name(self) -> Il2CppString { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_command(self) -> EventData_Commands
fn get_command(self) -> EventData_Commands
get_Command() overload
Sourcefn set_command(self, value: impl Into<EventData_Commands>)
fn set_command(self, value: impl Into<EventData_Commands>)
set_Command(crate::app::eventdata::EventData_Commands) overload
Sourcefn get_arg1(self) -> Il2CppString
fn get_arg1(self) -> Il2CppString
get_Arg1() overload
Sourcefn set_arg1(self, value: impl Into<Il2CppString>)
fn set_arg1(self, value: impl Into<Il2CppString>)
set_Arg1(::unity::Il2CppString) overload
Sourcefn get_arg2(self) -> Il2CppString
fn get_arg2(self) -> Il2CppString
get_Arg2() overload
Sourcefn set_arg2(self, value: impl Into<Il2CppString>)
fn set_arg2(self, value: impl Into<Il2CppString>)
set_Arg2(::unity::Il2CppString) overload
Sourcefn get_arg3(self) -> Il2CppString
fn get_arg3(self) -> Il2CppString
get_Arg3() overload
Sourcefn set_arg3(self, value: impl Into<Il2CppString>)
fn set_arg3(self, value: impl Into<Il2CppString>)
set_Arg3(::unity::Il2CppString) overload
Sourcefn get_arg4(self) -> Il2CppString
fn get_arg4(self) -> Il2CppString
get_Arg4() overload
Sourcefn set_arg4(self, value: impl Into<Il2CppString>)
fn set_arg4(self, value: impl Into<Il2CppString>)
set_Arg4(::unity::Il2CppString) overload
Sourcefn get_arg5(self) -> Il2CppString
fn get_arg5(self) -> Il2CppString
get_Arg5() overload
Sourcefn set_arg5(self, value: impl Into<Il2CppString>)
fn set_arg5(self, value: impl Into<Il2CppString>)
set_Arg5(::unity::Il2CppString) overload
Sourcefn get_arg6(self) -> Il2CppString
fn get_arg6(self) -> Il2CppString
get_Arg6() overload
Sourcefn set_arg6(self, value: impl Into<Il2CppString>)
fn set_arg6(self, value: impl Into<Il2CppString>)
set_Arg6(::unity::Il2CppString) overload
Sourcefn get_arg7(self) -> Il2CppString
fn get_arg7(self) -> Il2CppString
get_Arg7() overload
Sourcefn set_arg7(self, value: impl Into<Il2CppString>)
fn set_arg7(self, value: impl Into<Il2CppString>)
set_Arg7(::unity::Il2CppString) overload
Sourcefn get_condition(self) -> Il2CppString
fn get_condition(self) -> Il2CppString
get_Condition() overload
Sourcefn set_condition(self, value: impl Into<Il2CppString>)
fn set_condition(self, value: impl Into<Il2CppString>)
set_Condition(::unity::Il2CppString) overload
Sourcefn get_debug_name(self) -> Il2CppString
fn get_debug_name(self) -> Il2CppString
GetDebugName() 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: IEventData> IEventDataMethods for __T
Available on crate feature
app-eventdata only.