pub struct WorkingStats {
pub manual_labor: Option<i32>,
pub intelligence: Option<i32>,
pub endurance: Option<i32>,
}
Fields§
§manual_labor: Option<i32>
§intelligence: Option<i32>
§endurance: Option<i32>
Trait Implementations§
Source§impl Clone for WorkingStats
impl Clone for WorkingStats
Source§fn clone(&self) -> WorkingStats
fn clone(&self) -> WorkingStats
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 WorkingStats
impl Debug for WorkingStats
Source§impl<'de> Deserialize<'de> for WorkingStats
impl<'de> Deserialize<'de> for WorkingStats
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
Source§impl PartialEq for WorkingStats
impl PartialEq for WorkingStats
impl StructuralPartialEq for WorkingStats
Auto Trait Implementations§
impl Freeze for WorkingStats
impl RefUnwindSafe for WorkingStats
impl Send for WorkingStats
impl Sync for WorkingStats
impl Unpin for WorkingStats
impl UnwindSafe for WorkingStats
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