pub struct Blacksmith {
pub metal: u64,
pub arcane: u64,
pub dismantle_left: u8,
pub last_dismantled: Option<DateTime<Local>>,
}Fields§
§metal: u64§arcane: u64§dismantle_left: u8§last_dismantled: Option<DateTime<Local>>This seems to keep track of when you last dismantled. No idea why
Trait Implementations§
Source§impl Clone for Blacksmith
impl Clone for Blacksmith
Source§fn clone(&self) -> Blacksmith
fn clone(&self) -> Blacksmith
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for Blacksmith
impl Debug for Blacksmith
Source§impl Default for Blacksmith
impl Default for Blacksmith
Source§fn default() -> Blacksmith
fn default() -> Blacksmith
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for Blacksmith
impl<'de> Deserialize<'de> for Blacksmith
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Blacksmith
impl RefUnwindSafe for Blacksmith
impl Send for Blacksmith
impl Sync for Blacksmith
impl Unpin for Blacksmith
impl UnwindSafe for Blacksmith
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