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