pub enum MissionCompletedEventFactionEffectEffectEffect {
EconomicStationIncrease,
EconomicStationDecrease,
OutbreakStationIncrease,
OutbreakStationDecrease,
SecurityFactionIncrease,
SecurityFactionDecrease,
OutbreakDecrease,
Unknown(String),
}
Variants§
EconomicStationIncrease
EconomicStationDecrease
OutbreakStationIncrease
OutbreakStationDecrease
SecurityFactionIncrease
SecurityFactionDecrease
OutbreakDecrease
Unknown(String)
Available on crate feature
allow-unknown
only.Trait Implementations§
Source§impl Clone for MissionCompletedEventFactionEffectEffectEffect
impl Clone for MissionCompletedEventFactionEffectEffectEffect
Source§fn clone(&self) -> MissionCompletedEventFactionEffectEffectEffect
fn clone(&self) -> MissionCompletedEventFactionEffectEffectEffect
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 MissionCompletedEventFactionEffectEffectEffect
impl<'de> Deserialize<'de> for MissionCompletedEventFactionEffectEffectEffect
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 MissionCompletedEventFactionEffectEffectEffect
impl PartialEq for MissionCompletedEventFactionEffectEffectEffect
Source§fn eq(&self, other: &MissionCompletedEventFactionEffectEffectEffect) -> bool
fn eq(&self, other: &MissionCompletedEventFactionEffectEffectEffect) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for MissionCompletedEventFactionEffectEffectEffect
Auto Trait Implementations§
impl Freeze for MissionCompletedEventFactionEffectEffectEffect
impl RefUnwindSafe for MissionCompletedEventFactionEffectEffectEffect
impl Send for MissionCompletedEventFactionEffectEffectEffect
impl Sync for MissionCompletedEventFactionEffectEffectEffect
impl Unpin for MissionCompletedEventFactionEffectEffectEffect
impl UnwindSafe for MissionCompletedEventFactionEffectEffectEffect
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