pub struct StatisticsCrafting {
pub count_of_used_engineers: u32,
pub recipes_generated: u32,
pub recipes_generated_rank_1: u32,
pub recipes_generated_rank_2: u32,
pub recipes_generated_rank_3: u32,
pub recipes_generated_rank_4: u32,
pub recipes_generated_rank_5: u32,
}
Fields§
§count_of_used_engineers: u32
§recipes_generated: u32
§recipes_generated_rank_1: u32
§recipes_generated_rank_2: u32
§recipes_generated_rank_3: u32
§recipes_generated_rank_4: u32
§recipes_generated_rank_5: u32
Trait Implementations§
Source§impl Clone for StatisticsCrafting
impl Clone for StatisticsCrafting
Source§fn clone(&self) -> StatisticsCrafting
fn clone(&self) -> StatisticsCrafting
Returns a copy 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 StatisticsCrafting
impl Debug for StatisticsCrafting
Source§impl<'de> Deserialize<'de> for StatisticsCrafting
impl<'de> Deserialize<'de> for StatisticsCrafting
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 StatisticsCrafting
impl PartialEq for StatisticsCrafting
Source§impl Serialize for StatisticsCrafting
impl Serialize for StatisticsCrafting
impl StructuralPartialEq for StatisticsCrafting
Auto Trait Implementations§
impl Freeze for StatisticsCrafting
impl RefUnwindSafe for StatisticsCrafting
impl Send for StatisticsCrafting
impl Sync for StatisticsCrafting
impl Unpin for StatisticsCrafting
impl UnwindSafe for StatisticsCrafting
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