pub trait ITemplateArrayDataMethods: ITemplateArrayData {
// Provided methods
fn get_name(self) -> Il2CppString { ... }
fn set_name(self, value: impl Into<Il2CppString>) { ... }
fn get_value1(self) -> i32 { ... }
fn set_value1(self, value: impl Into<i32>) { ... }
fn get_value2(self) -> f32 { ... }
fn set_value2(self, value: impl Into<f32>) { ... }
fn get_value3(self) -> i32 { ... }
fn set_value3(self, value: impl Into<i32>) { ... }
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_value1(self) -> i32
fn get_value1(self) -> i32
get_Value1() overload
Sourcefn set_value1(self, value: impl Into<i32>)
fn set_value1(self, value: impl Into<i32>)
set_Value1(i32) overload
Sourcefn get_value2(self) -> f32
fn get_value2(self) -> f32
get_Value2() overload
Sourcefn set_value2(self, value: impl Into<f32>)
fn set_value2(self, value: impl Into<f32>)
set_Value2(f32) overload
Sourcefn get_value3(self) -> i32
fn get_value3(self) -> i32
get_Value3() overload
Sourcefn set_value3(self, value: impl Into<i32>)
fn set_value3(self, value: impl Into<i32>)
set_Value3(i32) 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: ITemplateArrayData> ITemplateArrayDataMethods for __T
Available on crate feature
app-templatearraydata only.