pub trait IRelianceExpDataMethods: IRelianceExpData {
// Provided methods
fn get_rexid(self) -> Il2CppString { ... }
fn set_rexid(self, value: impl Into<Il2CppString>) { ... }
fn get_exp_c(self) -> u8 { ... }
fn set_exp_c(self, value: impl Into<u8>) { ... }
fn get_exp_b(self) -> u8 { ... }
fn set_exp_b(self, value: impl Into<u8>) { ... }
fn get_exp_a(self) -> u8 { ... }
fn set_exp_a(self, value: impl Into<u8>) { ... }
fn get_debug_name(self) -> Il2CppString { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_rexid(self) -> Il2CppString
fn get_rexid(self) -> Il2CppString
get_Rexid() overload
Sourcefn set_rexid(self, value: impl Into<Il2CppString>)
fn set_rexid(self, value: impl Into<Il2CppString>)
set_Rexid(::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: IRelianceExpData> IRelianceExpDataMethods for __T
Available on crate feature
app-relianceexpdata only.