pub trait IRewindMenu_MenuItem_UnitIconInfoMethods: IRewindMenu_MenuItem_UnitIconInfo {
Show 13 methods
// Provided methods
fn get_person(self) -> PersonData { ... }
fn set_person(self, value: impl Into<PersonData>) { ... }
fn get_job(self) -> JobData { ... }
fn set_job(self, value: impl Into<JobData>) { ... }
fn get_is_female(self) -> bool { ... }
fn set_is_female(self, value: impl Into<bool>) { ... }
fn get_item_kind(self) -> ItemData_Kinds { ... }
fn set_item_kind(self, value: impl Into<ItemData_Kinds>) { ... }
fn get_is_engage(self) -> bool { ... }
fn set_is_engage(self, value: impl Into<bool>) { ... }
fn get_god(self) -> GodData { ... }
fn set_god(self, value: impl Into<GodData>) { ... }
fn ctor(
self,
rewind_log_unit_icon: impl Into<MapHistory_RewindLog_UnitIcon>,
) { ... }
}Provided Methods§
Sourcefn get_person(self) -> PersonData
fn get_person(self) -> PersonData
get_Person() overload
Sourcefn set_person(self, value: impl Into<PersonData>)
fn set_person(self, value: impl Into<PersonData>)
set_Person(crate::app::persondata::PersonData) overload
Sourcefn get_is_female(self) -> bool
fn get_is_female(self) -> bool
get_IsFemale() overload
Sourcefn set_is_female(self, value: impl Into<bool>)
fn set_is_female(self, value: impl Into<bool>)
set_IsFemale(bool) overload
Sourcefn get_item_kind(self) -> ItemData_Kinds
fn get_item_kind(self) -> ItemData_Kinds
get_ItemKind() overload
Sourcefn set_item_kind(self, value: impl Into<ItemData_Kinds>)
fn set_item_kind(self, value: impl Into<ItemData_Kinds>)
set_ItemKind(crate::app::itemdata::ItemData_Kinds) overload
Sourcefn get_is_engage(self) -> bool
fn get_is_engage(self) -> bool
get_IsEngage() overload
Sourcefn set_is_engage(self, value: impl Into<bool>)
fn set_is_engage(self, value: impl Into<bool>)
set_IsEngage(bool) overload
Sourcefn ctor(self, rewind_log_unit_icon: impl Into<MapHistory_RewindLog_UnitIcon>)
fn ctor(self, rewind_log_unit_icon: impl Into<MapHistory_RewindLog_UnitIcon>)
.ctor(crate::app::maphistory::MapHistory_RewindLog_UnitIcon) 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: IRewindMenu_MenuItem_UnitIconInfo> IRewindMenu_MenuItem_UnitIconInfoMethods for __T
Available on crate feature
app-rewindmenu only.