Skip to main content

ITemplateArrayDataMethods

Trait ITemplateArrayDataMethods 

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

Source

fn get_name(self) -> Il2CppString

get_Name() overload

Source

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

set_Name(::unity::Il2CppString) overload

Source

fn get_value1(self) -> i32

get_Value1() overload

Source

fn set_value1(self, value: impl Into<i32>)

set_Value1(i32) overload

Source

fn get_value2(self) -> f32

get_Value2() overload

Source

fn set_value2(self, value: impl Into<f32>)

set_Value2(f32) overload

Source

fn get_value3(self) -> i32

get_Value3() overload

Source

fn set_value3(self, value: impl Into<i32>)

set_Value3(i32) 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: ITemplateArrayData> ITemplateArrayDataMethods for __T

Available on crate feature app-templatearraydata only.