pub struct ArmorSet {
pub id: u32,
pub name: String,
pub pieces: Vec<u64>,
pub bonuses: Vec<(usize, Vec<StatModifier>)>,
}Fields§
§id: u32§name: String§pieces: Vec<u64>§bonuses: Vec<(usize, Vec<StatModifier>)>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ArmorSet
impl RefUnwindSafe for ArmorSet
impl Send for ArmorSet
impl Sync for ArmorSet
impl Unpin for ArmorSet
impl UnsafeUnpin for ArmorSet
impl UnwindSafe for ArmorSet
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