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§
Sourcefn get_fid(self) -> Il2CppString
fn get_fid(self) -> Il2CppString
get_Fid() overload
Sourcefn set_fid(self, value: impl Into<Il2CppString>)
fn set_fid(self, value: impl Into<Il2CppString>)
set_Fid(::unity::Il2CppString) overload
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_message(self) -> Il2CppString
fn get_message(self) -> Il2CppString
get_Message() overload
Sourcefn set_message(self, value: impl Into<Il2CppString>)
fn set_message(self, value: impl Into<Il2CppString>)
set_Message(::unity::Il2CppString) overload
Sourcefn get_enhance(self) -> CapabilitySbyte
fn get_enhance(self) -> CapabilitySbyte
get_Enhance() overload
Sourcefn set_enhance(self, value: impl Into<CapabilitySbyte>)
fn set_enhance(self, value: impl Into<CapabilitySbyte>)
set_Enhance(crate::app::capabilitysbyte::CapabilitySbyte) overload
Sourcefn get_foodstuffs(self) -> Array<Il2CppString>
fn get_foodstuffs(self) -> Array<Il2CppString>
get_Foodstuffs() overload
Sourcefn set_foodstuffs(self, value: impl Into<Array<Il2CppString>>)
fn set_foodstuffs(self, value: impl Into<Array<Il2CppString>>)
set_Foodstuffs(::unity::Array<::unity::Il2CppString>) overload
Sourcefn get_country(self) -> PersonData_Country
fn get_country(self) -> PersonData_Country
get_Country() overload
Sourcefn set_country(self, value: impl Into<PersonData_Country>)
fn set_country(self, value: impl Into<PersonData_Country>)
set_Country(crate::app::persondata::PersonData_Country) overload
Sourcefn get_prefab_name(self) -> Il2CppString
fn get_prefab_name(self) -> Il2CppString
get_PrefabName() overload
Sourcefn set_prefab_name(self, value: impl Into<Il2CppString>)
fn set_prefab_name(self, value: impl Into<Il2CppString>)
set_PrefabName(::unity::Il2CppString) overload
Sourcefn get_se_event(self) -> Il2CppString
fn get_se_event(self) -> Il2CppString
get_SeEvent() overload
Sourcefn set_se_event(self, value: impl Into<Il2CppString>)
fn set_se_event(self, value: impl Into<Il2CppString>)
set_SeEvent(::unity::Il2CppString) overload
Sourcefn get_debug_name(self) -> Il2CppString
fn get_debug_name(self) -> Il2CppString
GetDebugName() overload
Sourcefn get_difficulty(self, pid: impl Into<Il2CppString>) -> CookData_Difficulty
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§
impl<__T: IFoodData> IFoodDataMethods for __T
app-fooddata only.