pub struct SkillRow {
pub name: &'static str,
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§
§name: &'static str§tier: u16§next_tier: u16§progress: f32§xp_into_band: f64§xp_band_size: f64§xp_to_next: f64§pool_xp: f64Trait Implementations§
Auto Trait Implementations§
impl Freeze for SkillRow
impl RefUnwindSafe for SkillRow
impl Send for SkillRow
impl Sync for SkillRow
impl Unpin for SkillRow
impl UnsafeUnpin for SkillRow
impl UnwindSafe for SkillRow
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