Skip to main content

ITemplateOneDataMethods

Trait ITemplateOneDataMethods 

Source
pub trait ITemplateOneDataMethods: ITemplateOneData {
Show 20 methods // Provided methods fn get_id(self) -> Il2CppString { ... } fn set_id(self, value: impl Into<Il2CppString>) { ... } 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_value4(self) -> Array<i32> { ... } fn set_value4(self, value: impl Into<Array<i32>>) { ... } fn get_value5(self) -> Array<Il2CppString> { ... } fn set_value5(self, value: impl Into<Array<Il2CppString>>) { ... } fn get_flag(self) -> TemplateOneData_Flags { ... } fn set_flag(self, value: impl Into<TemplateOneData_Flags>) { ... } fn get_sample(self) -> TemplateOneData_SampleClass { ... } fn set_sample(self, value: impl Into<TemplateOneData_SampleClass>) { ... } fn get_debug_name(self) -> Il2CppString { ... } fn ctor(self) { ... }
}

Provided Methods§

Source

fn get_id(self) -> Il2CppString

get_ID() overload

Source

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

set_ID(::unity::Il2CppString) overload

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_value4(self) -> Array<i32>

get_Value4() overload

Source

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

set_Value4(::unity::Array<i32>) overload

Source

fn get_value5(self) -> Array<Il2CppString>

get_Value5() overload

Source

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

set_Value5(::unity::Array<::unity::Il2CppString>) overload

Source

fn get_flag(self) -> TemplateOneData_Flags

get_Flag() overload

Source

fn set_flag(self, value: impl Into<TemplateOneData_Flags>)

set_Flag(crate::app::templateonedata::TemplateOneData_Flags) overload

Source

fn get_sample(self) -> TemplateOneData_SampleClass

get_Sample() overload

Source

fn set_sample(self, value: impl Into<TemplateOneData_SampleClass>)

set_Sample(crate::app::templateonedata::TemplateOneData_SampleClass) 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: ITemplateOneData> ITemplateOneDataMethods for __T

Available on crate feature app-templateonedata only.