pub struct SetItem {
pub set_id: u32,
pub piece_id: u32,
pub name: &'static str,
pub base_type: ItemType,
pub stats: Vec<(StatKind, f32)>,
}Expand description
An item belonging to a named set.
Fields§
§set_id: u32§piece_id: u32§name: &'static str§base_type: ItemType§stats: Vec<(StatKind, f32)>Trait Implementations§
Auto Trait Implementations§
impl Freeze for SetItem
impl RefUnwindSafe for SetItem
impl Send for SetItem
impl Sync for SetItem
impl Unpin for SetItem
impl UnsafeUnpin for SetItem
impl UnwindSafe for SetItem
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