pub trait ISortieEntrustUnitDataMethods: ISortieEntrustUnitData {
// Provided methods
fn ctor(self, unit: impl Into<Unit>) { ... }
fn add(self, unit_item: impl Into<UnitItem>) { ... }
fn next_progress(self) { ... }
fn end_progress(self) { ... }
fn get_sorted_weapon_kind(self, index: impl Into<i32>) -> ItemData_Kinds { ... }
fn get_unit(self) -> Unit { ... }
fn get_unit_items(self) -> Array<UnitItem> { ... }
fn get_count(self) -> i32 { ... }
fn get_progress(self) -> SortieEntrustProgress { ... }
}Provided Methods§
Sourcefn next_progress(self)
fn next_progress(self)
NextProgress() overload
Sourcefn end_progress(self)
fn end_progress(self)
EndProgress() overload
Sourcefn get_sorted_weapon_kind(self, index: impl Into<i32>) -> ItemData_Kinds
fn get_sorted_weapon_kind(self, index: impl Into<i32>) -> ItemData_Kinds
GetSortedWeaponKind(i32) overload
Sourcefn get_unit_items(self) -> Array<UnitItem>
fn get_unit_items(self) -> Array<UnitItem>
get_UnitItems() overload
Sourcefn get_progress(self) -> SortieEntrustProgress
fn get_progress(self) -> SortieEntrustProgress
get_Progress() 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: ISortieEntrustUnitData> ISortieEntrustUnitDataMethods for __T
Available on crate feature
app-sortieentrustunitdata only.