pub struct MultiSellExplorationDataEvent {
pub base_value: u64,
pub bonus: u64,
pub total_earnings: u64,
pub discovered: Vec<MultiSellExplorationDataEventDiscovery>,
}
Expand description
Fired when selling multiple entries of exploration data.
Fields§
§base_value: u64
The base value of the exploration data in credits.
bonus: u64
Any bonus earnings in credits.
total_earnings: u64
The total number of credits received.
discovered: Vec<MultiSellExplorationDataEventDiscovery>
List of discoveries attributed to the current player.
Trait Implementations§
Source§impl Clone for MultiSellExplorationDataEvent
impl Clone for MultiSellExplorationDataEvent
Source§fn clone(&self) -> MultiSellExplorationDataEvent
fn clone(&self) -> MultiSellExplorationDataEvent
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<'de> Deserialize<'de> for MultiSellExplorationDataEvent
impl<'de> Deserialize<'de> for MultiSellExplorationDataEvent
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 MultiSellExplorationDataEvent
impl PartialEq for MultiSellExplorationDataEvent
Source§fn eq(&self, other: &MultiSellExplorationDataEvent) -> bool
fn eq(&self, other: &MultiSellExplorationDataEvent) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for MultiSellExplorationDataEvent
Auto Trait Implementations§
impl Freeze for MultiSellExplorationDataEvent
impl RefUnwindSafe for MultiSellExplorationDataEvent
impl Send for MultiSellExplorationDataEvent
impl Sync for MultiSellExplorationDataEvent
impl Unpin for MultiSellExplorationDataEvent
impl UnwindSafe for MultiSellExplorationDataEvent
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