pub enum CodexAnomalyEntry {
Show 32 variants
LagrangeClouds,
BlueGasClouds,
StormingBlueGasClouds,
ChargedGasClouds,
GreenGasClouds,
StormingGreenGasClouds,
LightGasClouds,
GasClouds,
OrangeGasClouds,
StormingOrangeGasClouds,
PinkGasClouds,
StormingPinkGasClouds,
RedGasClouds,
StormingRedGasClouds,
StandardGasClouds,
YellowGasClouds,
StormingYellowGasClouds,
MetallicStructures,
Mollusc1V1,
Mollusc1V2,
Mollusc1V3,
Mollusc1V4,
Mollusc1V5,
Mollusc1V6,
Mollusc3V1,
Mollusc3V2,
Mollusc3V3,
Mollusc3V4,
Mollusc3V6,
PlateStructures,
SilicateStructures,
Unknown(String),
}
Expand description
Codex entries related to anomalies.
Variants§
LagrangeClouds
BlueGasClouds
StormingBlueGasClouds
ChargedGasClouds
GreenGasClouds
StormingGreenGasClouds
LightGasClouds
GasClouds
OrangeGasClouds
StormingOrangeGasClouds
PinkGasClouds
StormingPinkGasClouds
RedGasClouds
StormingRedGasClouds
StandardGasClouds
YellowGasClouds
StormingYellowGasClouds
MetallicStructures
Mollusc1V1
Mollusc1V2
Mollusc1V3
Mollusc1V4
Mollusc1V5
Mollusc1V6
Mollusc3V1
Mollusc3V2
Mollusc3V3
Mollusc3V4
Mollusc3V6
PlateStructures
SilicateStructures
Unknown(String)
Available on crate feature
allow-unknown
only.Implementations§
Source§impl CodexAnomalyEntry
impl CodexAnomalyEntry
Sourcepub fn is_unknown(&self) -> bool
Available on crate feature allow-unknown
only.
pub fn is_unknown(&self) -> bool
allow-unknown
only.Whether the current variant is unknown.
Trait Implementations§
Source§impl Clone for CodexAnomalyEntry
impl Clone for CodexAnomalyEntry
Source§fn clone(&self) -> CodexAnomalyEntry
fn clone(&self) -> CodexAnomalyEntry
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 CodexAnomalyEntry
impl Debug for CodexAnomalyEntry
Source§impl<'de> Deserialize<'de> for CodexAnomalyEntry
impl<'de> Deserialize<'de> for CodexAnomalyEntry
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 Display for CodexAnomalyEntry
impl Display for CodexAnomalyEntry
Source§impl FromStr for CodexAnomalyEntry
impl FromStr for CodexAnomalyEntry
Source§impl Hash for CodexAnomalyEntry
impl Hash for CodexAnomalyEntry
Source§impl PartialEq for CodexAnomalyEntry
impl PartialEq for CodexAnomalyEntry
Source§impl Serialize for CodexAnomalyEntry
impl Serialize for CodexAnomalyEntry
impl Eq for CodexAnomalyEntry
impl StructuralPartialEq for CodexAnomalyEntry
Auto Trait Implementations§
impl Freeze for CodexAnomalyEntry
impl RefUnwindSafe for CodexAnomalyEntry
impl Send for CodexAnomalyEntry
impl Sync for CodexAnomalyEntry
impl Unpin for CodexAnomalyEntry
impl UnwindSafe for CodexAnomalyEntry
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