pub struct StatisticsCombat {
pub bounties_claimed: u32,
pub bounty_hunting_profit: f32,
pub combat_bonds: u32,
pub combat_bond_profits: i64,
pub assassinations: u32,
pub assassination_profits: i64,
pub highest_single_reward: u64,
pub skimmers_killed: u32,
}
Fields§
§bounties_claimed: u32
§bounty_hunting_profit: f32
§combat_bonds: u32
§combat_bond_profits: i64
§assassinations: u32
§assassination_profits: i64
§highest_single_reward: u64
§skimmers_killed: u32
Trait Implementations§
Source§impl Clone for StatisticsCombat
impl Clone for StatisticsCombat
Source§fn clone(&self) -> StatisticsCombat
fn clone(&self) -> StatisticsCombat
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 StatisticsCombat
impl Debug for StatisticsCombat
Source§impl<'de> Deserialize<'de> for StatisticsCombat
impl<'de> Deserialize<'de> for StatisticsCombat
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 StatisticsCombat
impl PartialEq for StatisticsCombat
Source§impl Serialize for StatisticsCombat
impl Serialize for StatisticsCombat
impl StructuralPartialEq for StatisticsCombat
Auto Trait Implementations§
impl Freeze for StatisticsCombat
impl RefUnwindSafe for StatisticsCombat
impl Send for StatisticsCombat
impl Sync for StatisticsCombat
impl Unpin for StatisticsCombat
impl UnwindSafe for StatisticsCombat
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