struct Mineral {
ore: u32,
clay: u32,
obsidian: u32,
geode: u32,
}
Fields§
§ore: u32
§clay: u32
§obsidian: u32
§geode: u32
Implementations§
Trait Implementations§
Source§impl Add for Mineral
Implement operators so that we can use +
and -
notation to add and subtract minerals.
impl Add for Mineral
Implement operators so that we can use +
and -
notation to add and subtract minerals.
impl Copy for Mineral
Auto Trait Implementations§
impl Freeze for Mineral
impl RefUnwindSafe for Mineral
impl Send for Mineral
impl Sync for Mineral
impl Unpin for Mineral
impl UnwindSafe for Mineral
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