pub trait ISortieEntrustUnitData: IObject {
// Provided methods
fn m_unit(self) -> Unit { ... }
fn set_m_unit(self, value: Unit) { ... }
fn m_unit_items(self) -> Array<UnitItem> { ... }
fn set_m_unit_items(self, value: Array<UnitItem>) { ... }
fn m_count(self) -> i32 { ... }
fn set_m_count(self, value: i32) { ... }
fn m_progress(self) -> SortieEntrustProgress { ... }
fn set_m_progress(self, value: SortieEntrustProgress) { ... }
fn m_sorted_weapon_kind(self) -> List_1<SortieEntrustUnitData_WeaponKindExp> { ... }
fn set_m_sorted_weapon_kind(
self,
value: List_1<SortieEntrustUnitData_WeaponKindExp>,
) { ... }
}Provided Methods§
fn m_unit(self) -> Unit
fn set_m_unit(self, value: Unit)
fn m_unit_items(self) -> Array<UnitItem>
fn set_m_unit_items(self, value: Array<UnitItem>)
fn m_count(self) -> i32
fn set_m_count(self, value: i32)
fn m_progress(self) -> SortieEntrustProgress
fn set_m_progress(self, value: SortieEntrustProgress)
fn m_sorted_weapon_kind(self) -> List_1<SortieEntrustUnitData_WeaponKindExp>
fn set_m_sorted_weapon_kind( self, value: List_1<SortieEntrustUnitData_WeaponKindExp>, )
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.