Skip to main content

IMapHistory_RewindLog_UnitIconMethods

Trait IMapHistory_RewindLog_UnitIconMethods 

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

Source

fn ctor(self)

.ctor() overload

Source

fn clear(self)

Clear() overload

Source

fn is_valid(self) -> bool

IsValid() overload

Source

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

Source

fn set_engage(self, gid: impl Into<Il2CppString>)

SetEngage(::unity::Il2CppString) overload

Source

fn get_person(self) -> PersonData

get_Person() overload

Source

fn get_job(self) -> JobData

get_Job() overload

Source

fn get_item_kind(self) -> ItemData_Kinds

get_ItemKind() overload

Source

fn get_is_female(self) -> bool

get_IsFemale() overload

Source

fn get_is_engage(self) -> bool

get_IsEngage() overload

Source

fn get_god(self) -> GodData

get_God() 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: IMapHistory_RewindLog_UnitIcon> IMapHistory_RewindLog_UnitIconMethods for __T

Available on crate feature app-maphistory only.