pub trait IUnitInfoViewerSettingMethods: IUnitInfoViewerSetting {
Show 14 methods
// Provided methods
fn start(self) { ... }
fn on_destroy(self) { ... }
fn update(self) { ... }
fn create_unit(self, side: impl Into<UnitInfo_Side>) { ... }
fn get_person(
self,
unit_data: impl Into<UnitInfoViewerSetting_UnitData>,
) -> PersonData { ... }
fn get_job(
self,
unit_data: impl Into<UnitInfoViewerSetting_UnitData>,
) -> JobData { ... }
fn get_weapon(
self,
unit_data: impl Into<UnitInfoViewerSetting_UnitData>,
) -> ItemData { ... }
fn is_hiding_canvs(self) -> bool { ... }
fn show_canvas(self) { ... }
fn chara_only_on(self) { ... }
fn chara_only_off(self) { ... }
fn is_chara_only_transition(self) -> bool { ... }
fn has_unit(self) -> bool { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn on_destroy(self)
fn on_destroy(self)
OnDestroy() overload
Sourcefn create_unit(self, side: impl Into<UnitInfo_Side>)
fn create_unit(self, side: impl Into<UnitInfo_Side>)
CreateUnit(crate::app::unitinfo::UnitInfo_Side) overload
Sourcefn get_person(
self,
unit_data: impl Into<UnitInfoViewerSetting_UnitData>,
) -> PersonData
fn get_person( self, unit_data: impl Into<UnitInfoViewerSetting_UnitData>, ) -> PersonData
GetPerson(crate::app::unitinfoviewersetting::UnitInfoViewerSetting_UnitData) overload
Sourcefn get_job(
self,
unit_data: impl Into<UnitInfoViewerSetting_UnitData>,
) -> JobData
fn get_job( self, unit_data: impl Into<UnitInfoViewerSetting_UnitData>, ) -> JobData
GetJob(crate::app::unitinfoviewersetting::UnitInfoViewerSetting_UnitData) overload
Sourcefn get_weapon(
self,
unit_data: impl Into<UnitInfoViewerSetting_UnitData>,
) -> ItemData
fn get_weapon( self, unit_data: impl Into<UnitInfoViewerSetting_UnitData>, ) -> ItemData
GetWeapon(crate::app::unitinfoviewersetting::UnitInfoViewerSetting_UnitData) overload
Sourcefn is_hiding_canvs(self) -> bool
fn is_hiding_canvs(self) -> bool
IsHidingCanvs() overload
Sourcefn show_canvas(self)
fn show_canvas(self)
ShowCanvas() overload
Sourcefn chara_only_on(self)
fn chara_only_on(self)
CharaOnlyOn() overload
Sourcefn chara_only_off(self)
fn chara_only_off(self)
CharaOnlyOff() overload
Sourcefn is_chara_only_transition(self) -> bool
fn is_chara_only_transition(self) -> bool
IsCharaOnlyTransition() 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: IUnitInfoViewerSetting> IUnitInfoViewerSettingMethods for __T
Available on crate feature
app-unitinfoviewersetting only.