pub trait IRelayStampDataMethods: IRelayStampData {
Show 19 methods
// Provided methods
fn get_name(self) -> Il2CppString { ... }
fn set_name(self, value: impl Into<Il2CppString>) { ... }
fn get_serial_no(self) -> u8 { ... }
fn set_serial_no(self, value: impl Into<u8>) { ... }
fn get_pid(self) -> Il2CppString { ... }
fn set_pid(self, value: impl Into<Il2CppString>) { ... }
fn get_gid(self) -> Il2CppString { ... }
fn set_gid(self, value: impl Into<Il2CppString>) { ... }
fn get_kind(self) -> RelayStampData_Kinds { ... }
fn set_kind(self, value: impl Into<RelayStampData_Kinds>) { ... }
fn get_sort(self) -> i32 { ... }
fn set_sort(self, value: impl Into<i32>) { ... }
fn get_flag(self) -> RelayStampData_FlagField { ... }
fn set_flag(self, value: impl Into<RelayStampData_FlagField>) { ... }
fn get_voice(self) -> Il2CppString { ... }
fn set_voice(self, value: impl Into<Il2CppString>) { ... }
fn get_message(self) -> Il2CppString { ... }
fn get_debug_name(self) -> Il2CppString { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_name(self) -> Il2CppString
fn get_name(self) -> Il2CppString
get_Name() overload
Sourcefn set_name(self, value: impl Into<Il2CppString>)
fn set_name(self, value: impl Into<Il2CppString>)
set_Name(::unity::Il2CppString) overload
Sourcefn get_serial_no(self) -> u8
fn get_serial_no(self) -> u8
get_SerialNo() overload
Sourcefn set_serial_no(self, value: impl Into<u8>)
fn set_serial_no(self, value: impl Into<u8>)
set_SerialNo(u8) overload
Sourcefn get_pid(self) -> Il2CppString
fn get_pid(self) -> Il2CppString
get_Pid() overload
Sourcefn set_pid(self, value: impl Into<Il2CppString>)
fn set_pid(self, value: impl Into<Il2CppString>)
set_Pid(::unity::Il2CppString) overload
Sourcefn get_gid(self) -> Il2CppString
fn get_gid(self) -> Il2CppString
get_Gid() overload
Sourcefn set_gid(self, value: impl Into<Il2CppString>)
fn set_gid(self, value: impl Into<Il2CppString>)
set_Gid(::unity::Il2CppString) overload
Sourcefn get_kind(self) -> RelayStampData_Kinds
fn get_kind(self) -> RelayStampData_Kinds
get_Kind() overload
Sourcefn set_kind(self, value: impl Into<RelayStampData_Kinds>)
fn set_kind(self, value: impl Into<RelayStampData_Kinds>)
set_Kind(crate::app::relaystampdata::RelayStampData_Kinds) overload
Sourcefn get_flag(self) -> RelayStampData_FlagField
fn get_flag(self) -> RelayStampData_FlagField
get_Flag() overload
Sourcefn set_flag(self, value: impl Into<RelayStampData_FlagField>)
fn set_flag(self, value: impl Into<RelayStampData_FlagField>)
set_Flag(crate::app::relaystampdata::RelayStampData_FlagField) overload
Sourcefn get_voice(self) -> Il2CppString
fn get_voice(self) -> Il2CppString
get_Voice() overload
Sourcefn set_voice(self, value: impl Into<Il2CppString>)
fn set_voice(self, value: impl Into<Il2CppString>)
set_Voice(::unity::Il2CppString) overload
Sourcefn get_message(self) -> Il2CppString
fn get_message(self) -> Il2CppString
GetMessage() 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: IRelayStampData> IRelayStampDataMethods for __T
Available on crate feature
app-relaystampdata only.