pub struct AbilityMasteryRow {
pub label: String,
pub ability_id: String,
pub tier: u16,
pub next_tier: u16,
pub progress: f32,
pub xp_into_band: f64,
pub xp_band_size: f64,
pub xp_to_next: f64,
pub pool_xp: f64,
}Fields§
§label: String§ability_id: String§tier: u16§next_tier: u16§progress: f32§xp_into_band: f64§xp_band_size: f64§xp_to_next: f64§pool_xp: f64Trait Implementations§
Source§impl Clone for AbilityMasteryRow
impl Clone for AbilityMasteryRow
Source§fn clone(&self) -> AbilityMasteryRow
fn clone(&self) -> AbilityMasteryRow
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for AbilityMasteryRow
impl RefUnwindSafe for AbilityMasteryRow
impl Send for AbilityMasteryRow
impl Sync for AbilityMasteryRow
impl Unpin for AbilityMasteryRow
impl UnsafeUnpin for AbilityMasteryRow
impl UnwindSafe for AbilityMasteryRow
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more