Skip to main content

IEncountEquipDataMethods

Trait IEncountEquipDataMethods 

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

Source

fn get_category(self) -> Il2CppString

get_Category() overload

Source

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

set_Category(::unity::Il2CppString) overload

Source

fn get_percentage(self) -> u8

get_Percentage() overload

Source

fn set_percentage(self, value: impl Into<u8>)

set_Percentage(u8) overload

Source

fn on_build(self)

OnBuild() overload

Source

fn get_debug_name(self) -> Il2CppString

GetDebugName() overload

Source

fn get_kind_count(self, kind: impl Into<ItemData_Kinds>) -> i32

GetKindCount(crate::app::itemdata::ItemData_Kinds) overload

Source

fn get_kind_count_2(self, kinds: impl Into<Array<ItemData_Kinds>>) -> i32

GetKindCount(::unity::Array<crate::app::itemdata::ItemData_Kinds>) overload

Source

fn is_contains(self, rank: impl Into<i32>) -> bool

IsContains(i32) 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: IEncountEquipData> IEncountEquipDataMethods for __T

Available on crate feature app-encountequipdata only.