Skip to main content

IEventDataMethods

Trait IEventDataMethods 

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

Source

fn get_command(self) -> EventData_Commands

get_Command() overload

Source

fn set_command(self, value: impl Into<EventData_Commands>)

set_Command(crate::app::eventdata::EventData_Commands) overload

Source

fn get_arg1(self) -> Il2CppString

get_Arg1() overload

Source

fn set_arg1(self, value: impl Into<Il2CppString>)

set_Arg1(::unity::Il2CppString) overload

Source

fn get_arg2(self) -> Il2CppString

get_Arg2() overload

Source

fn set_arg2(self, value: impl Into<Il2CppString>)

set_Arg2(::unity::Il2CppString) overload

Source

fn get_arg3(self) -> Il2CppString

get_Arg3() overload

Source

fn set_arg3(self, value: impl Into<Il2CppString>)

set_Arg3(::unity::Il2CppString) overload

Source

fn get_arg4(self) -> Il2CppString

get_Arg4() overload

Source

fn set_arg4(self, value: impl Into<Il2CppString>)

set_Arg4(::unity::Il2CppString) overload

Source

fn get_arg5(self) -> Il2CppString

get_Arg5() overload

Source

fn set_arg5(self, value: impl Into<Il2CppString>)

set_Arg5(::unity::Il2CppString) overload

Source

fn get_arg6(self) -> Il2CppString

get_Arg6() overload

Source

fn set_arg6(self, value: impl Into<Il2CppString>)

set_Arg6(::unity::Il2CppString) overload

Source

fn get_arg7(self) -> Il2CppString

get_Arg7() overload

Source

fn set_arg7(self, value: impl Into<Il2CppString>)

set_Arg7(::unity::Il2CppString) overload

Source

fn get_condition(self) -> Il2CppString

get_Condition() overload

Source

fn set_condition(self, value: impl Into<Il2CppString>)

set_Condition(::unity::Il2CppString) overload

Source

fn get_debug_name(self) -> Il2CppString

GetDebugName() overload

Source

fn ctor(self)

.ctor() 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: IEventData> IEventDataMethods for __T

Available on crate feature app-eventdata only.