pub enum BountyEventTarget {
SentrySkimmer,
Stringer,
Ship(ShipType),
Citizen(Citizen),
}
Expand description
The type of target for the bounty.
Variants§
SentrySkimmer
For Skimmer drone targets.
Stringer
For bomb Skimmer drone targets.
Ship(ShipType)
For targets that fly the specified ship.
Citizen(Citizen)
For on-foot targets.
Trait Implementations§
Source§impl Clone for BountyEventTarget
impl Clone for BountyEventTarget
Source§fn clone(&self) -> BountyEventTarget
fn clone(&self) -> BountyEventTarget
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 BountyEventTarget
impl Debug for BountyEventTarget
Source§impl<'de> Deserialize<'de> for BountyEventTarget
impl<'de> Deserialize<'de> for BountyEventTarget
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 BountyEventTarget
impl PartialEq for BountyEventTarget
Source§impl Serialize for BountyEventTarget
impl Serialize for BountyEventTarget
impl StructuralPartialEq for BountyEventTarget
Auto Trait Implementations§
impl Freeze for BountyEventTarget
impl RefUnwindSafe for BountyEventTarget
impl Send for BountyEventTarget
impl Sync for BountyEventTarget
impl Unpin for BountyEventTarget
impl UnwindSafe for BountyEventTarget
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