Skip to main content

IFoodDataMethods

Trait IFoodDataMethods 

Source
pub trait IFoodDataMethods: IFoodData {
Show 19 methods // Provided methods fn ctor(self) { ... } fn get_fid(self) -> Il2CppString { ... } fn set_fid(self, value: impl Into<Il2CppString>) { ... } fn get_name(self) -> Il2CppString { ... } fn set_name(self, value: impl Into<Il2CppString>) { ... } fn get_message(self) -> Il2CppString { ... } fn set_message(self, value: impl Into<Il2CppString>) { ... } fn get_enhance(self) -> CapabilitySbyte { ... } fn set_enhance(self, value: impl Into<CapabilitySbyte>) { ... } fn get_foodstuffs(self) -> Array<Il2CppString> { ... } fn set_foodstuffs(self, value: impl Into<Array<Il2CppString>>) { ... } fn get_country(self) -> PersonData_Country { ... } fn set_country(self, value: impl Into<PersonData_Country>) { ... } fn get_prefab_name(self) -> Il2CppString { ... } fn set_prefab_name(self, value: impl Into<Il2CppString>) { ... } fn get_se_event(self) -> Il2CppString { ... } fn set_se_event(self, value: impl Into<Il2CppString>) { ... } fn get_debug_name(self) -> Il2CppString { ... } fn get_difficulty(self, pid: impl Into<Il2CppString>) -> CookData_Difficulty { ... }
}

Provided Methods§

Source

fn ctor(self)

.ctor() overload

Source

fn get_fid(self) -> Il2CppString

get_Fid() overload

Source

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

set_Fid(::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_message(self) -> Il2CppString

get_Message() overload

Source

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

set_Message(::unity::Il2CppString) overload

Source

fn get_enhance(self) -> CapabilitySbyte

get_Enhance() overload

Source

fn set_enhance(self, value: impl Into<CapabilitySbyte>)

set_Enhance(crate::app::capabilitysbyte::CapabilitySbyte) overload

Source

fn get_foodstuffs(self) -> Array<Il2CppString>

get_Foodstuffs() overload

Source

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

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

Source

fn get_country(self) -> PersonData_Country

get_Country() overload

Source

fn set_country(self, value: impl Into<PersonData_Country>)

set_Country(crate::app::persondata::PersonData_Country) overload

Source

fn get_prefab_name(self) -> Il2CppString

get_PrefabName() overload

Source

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

set_PrefabName(::unity::Il2CppString) overload

Source

fn get_se_event(self) -> Il2CppString

get_SeEvent() overload

Source

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

set_SeEvent(::unity::Il2CppString) overload

Source

fn get_debug_name(self) -> Il2CppString

GetDebugName() overload

Source

fn get_difficulty(self, pid: impl Into<Il2CppString>) -> CookData_Difficulty

GetDifficulty(::unity::Il2CppString) 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: IFoodData> IFoodDataMethods for __T

Available on crate feature app-fooddata only.