pub struct StatisticsExploration {
pub systems_visited: u32,
pub exploration_profits: i64,
pub planets_scanned_to_level_2: u32,
pub planets_scanned_to_level_3: u32,
pub highest_payout: u64,
pub total_hyperspace_distance: u32,
pub total_hyperspace_jumps: u32,
pub greatest_distance_from_start: f32,
pub time_played: u32,
}
Fields§
§systems_visited: u32
§exploration_profits: i64
§planets_scanned_to_level_2: u32
§planets_scanned_to_level_3: u32
§highest_payout: u64
§total_hyperspace_distance: u32
§total_hyperspace_jumps: u32
§greatest_distance_from_start: f32
§time_played: u32
Trait Implementations§
Source§impl Clone for StatisticsExploration
impl Clone for StatisticsExploration
Source§fn clone(&self) -> StatisticsExploration
fn clone(&self) -> StatisticsExploration
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 StatisticsExploration
impl Debug for StatisticsExploration
Source§impl<'de> Deserialize<'de> for StatisticsExploration
impl<'de> Deserialize<'de> for StatisticsExploration
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 StatisticsExploration
impl PartialEq for StatisticsExploration
Source§impl Serialize for StatisticsExploration
impl Serialize for StatisticsExploration
impl StructuralPartialEq for StatisticsExploration
Auto Trait Implementations§
impl Freeze for StatisticsExploration
impl RefUnwindSafe for StatisticsExploration
impl Send for StatisticsExploration
impl Sync for StatisticsExploration
impl Unpin for StatisticsExploration
impl UnwindSafe for StatisticsExploration
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