pub struct Inventory {
pub selected: i32,
pub count: Vec<i32>,
pub popTime: Vec<i32>,
pub slots: Vec<i32>,
}
Fields§
§selected: i32
§count: Vec<i32>
§popTime: Vec<i32>
§slots: Vec<i32>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Inventory
impl RefUnwindSafe for Inventory
impl Send for Inventory
impl Sync for Inventory
impl Unpin for Inventory
impl UnwindSafe for Inventory
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