pub struct StatisticsSmuggling {
pub black_markets_traded_with: u32,
pub black_markets_profits: i64,
pub resources_smuggled: u32,
pub average_profit: f32,
pub highest_single_transaction: i64,
}
Fields§
§black_markets_traded_with: u32
§black_markets_profits: i64
§resources_smuggled: u32
§average_profit: f32
§highest_single_transaction: i64
Trait Implementations§
Source§impl Clone for StatisticsSmuggling
impl Clone for StatisticsSmuggling
Source§fn clone(&self) -> StatisticsSmuggling
fn clone(&self) -> StatisticsSmuggling
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 StatisticsSmuggling
impl Debug for StatisticsSmuggling
Source§impl<'de> Deserialize<'de> for StatisticsSmuggling
impl<'de> Deserialize<'de> for StatisticsSmuggling
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 StatisticsSmuggling
impl PartialEq for StatisticsSmuggling
Source§impl Serialize for StatisticsSmuggling
impl Serialize for StatisticsSmuggling
impl StructuralPartialEq for StatisticsSmuggling
Auto Trait Implementations§
impl Freeze for StatisticsSmuggling
impl RefUnwindSafe for StatisticsSmuggling
impl Send for StatisticsSmuggling
impl Sync for StatisticsSmuggling
impl Unpin for StatisticsSmuggling
impl UnwindSafe for StatisticsSmuggling
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