pub struct StatisticsBankAccount {
pub current_wealth: u64,
pub spent_on_ships: u64,
pub spent_on_outfitting: u64,
pub spent_on_repairs: u64,
pub spent_on_fuel: u64,
pub spent_on_ammo_consumables: u64,
pub insurance_claims: u64,
pub spent_on_insurance: u64,
}
Fields§
§current_wealth: u64
§spent_on_ships: u64
§spent_on_outfitting: u64
§spent_on_repairs: u64
§spent_on_fuel: u64
§spent_on_ammo_consumables: u64
§insurance_claims: u64
§spent_on_insurance: u64
Trait Implementations§
Source§impl Clone for StatisticsBankAccount
impl Clone for StatisticsBankAccount
Source§fn clone(&self) -> StatisticsBankAccount
fn clone(&self) -> StatisticsBankAccount
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 StatisticsBankAccount
impl Debug for StatisticsBankAccount
Source§impl<'de> Deserialize<'de> for StatisticsBankAccount
impl<'de> Deserialize<'de> for StatisticsBankAccount
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 StatisticsBankAccount
impl PartialEq for StatisticsBankAccount
Source§impl Serialize for StatisticsBankAccount
impl Serialize for StatisticsBankAccount
impl StructuralPartialEq for StatisticsBankAccount
Auto Trait Implementations§
impl Freeze for StatisticsBankAccount
impl RefUnwindSafe for StatisticsBankAccount
impl Send for StatisticsBankAccount
impl Sync for StatisticsBankAccount
impl Unpin for StatisticsBankAccount
impl UnwindSafe for StatisticsBankAccount
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