pub struct SellExplorationDataEvent {
pub systems: Vec<String>,
pub discovered: Vec<String>,
pub base_value: u64,
pub bonus: u64,
pub total_earnings: u64,
}
Fields§
§systems: Vec<String>
§discovered: Vec<String>
§base_value: u64
§bonus: u64
§total_earnings: u64
Trait Implementations§
Source§impl Clone for SellExplorationDataEvent
impl Clone for SellExplorationDataEvent
Source§fn clone(&self) -> SellExplorationDataEvent
fn clone(&self) -> SellExplorationDataEvent
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 SellExplorationDataEvent
impl Debug for SellExplorationDataEvent
Source§impl<'de> Deserialize<'de> for SellExplorationDataEvent
impl<'de> Deserialize<'de> for SellExplorationDataEvent
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 SellExplorationDataEvent
impl PartialEq for SellExplorationDataEvent
Source§impl Serialize for SellExplorationDataEvent
impl Serialize for SellExplorationDataEvent
impl StructuralPartialEq for SellExplorationDataEvent
Auto Trait Implementations§
impl Freeze for SellExplorationDataEvent
impl RefUnwindSafe for SellExplorationDataEvent
impl Send for SellExplorationDataEvent
impl Sync for SellExplorationDataEvent
impl Unpin for SellExplorationDataEvent
impl UnwindSafe for SellExplorationDataEvent
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