pub trait IMapHistory_RewindLog_UnitIconMethods: IMapHistory_RewindLog_UnitIcon {
// Provided methods
fn ctor(self) { ... }
fn clear(self) { ... }
fn is_valid(self) -> bool { ... }
fn set(
self,
pid: impl Into<Il2CppString>,
jid: impl Into<Il2CppString>,
item_kind: impl Into<ItemData_Kinds>,
is_female: impl Into<bool>,
is_engage: impl Into<bool>,
gid: impl Into<Il2CppString>,
) { ... }
fn set_engage(self, gid: impl Into<Il2CppString>) { ... }
fn get_person(self) -> PersonData { ... }
fn get_job(self) -> JobData { ... }
fn get_item_kind(self) -> ItemData_Kinds { ... }
fn get_is_female(self) -> bool { ... }
fn get_is_engage(self) -> bool { ... }
fn get_god(self) -> GodData { ... }
}Provided Methods§
Sourcefn set(
self,
pid: impl Into<Il2CppString>,
jid: impl Into<Il2CppString>,
item_kind: impl Into<ItemData_Kinds>,
is_female: impl Into<bool>,
is_engage: impl Into<bool>,
gid: impl Into<Il2CppString>,
)
fn set( self, pid: impl Into<Il2CppString>, jid: impl Into<Il2CppString>, item_kind: impl Into<ItemData_Kinds>, is_female: impl Into<bool>, is_engage: impl Into<bool>, gid: impl Into<Il2CppString>, )
Set(::unity::Il2CppString, ::unity::Il2CppString, crate::app::itemdata::ItemData_Kinds, bool, bool, ::unity::Il2CppString) overload
Sourcefn set_engage(self, gid: impl Into<Il2CppString>)
fn set_engage(self, gid: impl Into<Il2CppString>)
SetEngage(::unity::Il2CppString) overload
Sourcefn get_person(self) -> PersonData
fn get_person(self) -> PersonData
get_Person() overload
Sourcefn get_item_kind(self) -> ItemData_Kinds
fn get_item_kind(self) -> ItemData_Kinds
get_ItemKind() overload
Sourcefn get_is_female(self) -> bool
fn get_is_female(self) -> bool
get_IsFemale() overload
Sourcefn get_is_engage(self) -> bool
fn get_is_engage(self) -> bool
get_IsEngage() 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: IMapHistory_RewindLog_UnitIcon> IMapHistory_RewindLog_UnitIconMethods for __T
Available on crate feature
app-maphistory only.