pub trait IEncountEquipDataMethods: IEncountEquipData {
// Provided methods
fn get_category(self) -> Il2CppString { ... }
fn set_category(self, value: impl Into<Il2CppString>) { ... }
fn get_percentage(self) -> u8 { ... }
fn set_percentage(self, value: impl Into<u8>) { ... }
fn on_build(self) { ... }
fn get_debug_name(self) -> Il2CppString { ... }
fn get_kind_count(self, kind: impl Into<ItemData_Kinds>) -> i32 { ... }
fn get_kind_count_2(self, kinds: impl Into<Array<ItemData_Kinds>>) -> i32 { ... }
fn is_contains(self, rank: impl Into<i32>) -> bool { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_category(self) -> Il2CppString
fn get_category(self) -> Il2CppString
get_Category() overload
Sourcefn set_category(self, value: impl Into<Il2CppString>)
fn set_category(self, value: impl Into<Il2CppString>)
set_Category(::unity::Il2CppString) overload
Sourcefn get_percentage(self) -> u8
fn get_percentage(self) -> u8
get_Percentage() overload
Sourcefn set_percentage(self, value: impl Into<u8>)
fn set_percentage(self, value: impl Into<u8>)
set_Percentage(u8) overload
Sourcefn get_debug_name(self) -> Il2CppString
fn get_debug_name(self) -> Il2CppString
GetDebugName() overload
Sourcefn get_kind_count(self, kind: impl Into<ItemData_Kinds>) -> i32
fn get_kind_count(self, kind: impl Into<ItemData_Kinds>) -> i32
GetKindCount(crate::app::itemdata::ItemData_Kinds) overload
Sourcefn get_kind_count_2(self, kinds: impl Into<Array<ItemData_Kinds>>) -> i32
fn get_kind_count_2(self, kinds: impl Into<Array<ItemData_Kinds>>) -> i32
GetKindCount(::unity::Array<crate::app::itemdata::ItemData_Kinds>) overload
Sourcefn is_contains(self, rank: impl Into<i32>) -> bool
fn is_contains(self, rank: impl Into<i32>) -> bool
IsContains(i32) 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: IEncountEquipData> IEncountEquipDataMethods for __T
Available on crate feature
app-encountequipdata only.