pub struct BountyEventSkimmer {
pub faction: Option<String>,
pub target: String,
pub reward: u64,
pub victim_faction: String,
}
Expand description
Details about a Skimmer bounty.
Fields§
§faction: Option<String>
The name of the faction that placed the bounty.
target: String
The name of the target.
reward: u64
The total number of credits rewarded when completing the bounty.
victim_faction: String
The name of the faction the target Skimmer drone is part of.
Trait Implementations§
Source§impl Clone for BountyEventSkimmer
impl Clone for BountyEventSkimmer
Source§fn clone(&self) -> BountyEventSkimmer
fn clone(&self) -> BountyEventSkimmer
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 BountyEventSkimmer
impl Debug for BountyEventSkimmer
Source§impl<'de> Deserialize<'de> for BountyEventSkimmer
impl<'de> Deserialize<'de> for BountyEventSkimmer
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 BountyEventSkimmer
impl PartialEq for BountyEventSkimmer
Source§impl Serialize for BountyEventSkimmer
impl Serialize for BountyEventSkimmer
impl StructuralPartialEq for BountyEventSkimmer
Auto Trait Implementations§
impl Freeze for BountyEventSkimmer
impl RefUnwindSafe for BountyEventSkimmer
impl Send for BountyEventSkimmer
impl Sync for BountyEventSkimmer
impl Unpin for BountyEventSkimmer
impl UnwindSafe for BountyEventSkimmer
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