pub enum CodexGeologicalEntry {
Show 48 variants
Fumarole,
FumaroleAmmoniaGeysers,
FumaroleCarbondioxideGeysers,
FumaroleHeliumGeysers,
FumaroleMethaneGeysers,
FumaroleNitrogenGeysers,
FumaroleSilicateVapourGeysers,
FumaroleSulfurDioxideMagma,
FumaroleWaterGeysers,
IceFumarole,
IceFumaroleAmmoniaGeysers,
IceFumaroleCarbonDioxideGeysers,
IceFumaroleHeliumGeysers,
IceFumaroleMethaneGeysers,
IceFumaroleNitrogenGeysers,
IceFumaroleSilicateVapourGeysers,
IceFumaroleSulfurDioxideMagma,
IceFumaroleWaterGeysers,
GasVents,
GasVentsAmmoniaGeysers,
GasVentsCarbonDioxideGeysers,
GasVentsHeliumGeysers,
GasVentsMethaneGeysers,
GasVentsNitrogenGeysers,
GasVentsSilicateVapourGeysers,
GasVentsSulfurDioxideMagma,
GasVentsWaterGeysers,
Geysers,
GeysersAmmoniaGeysers,
GeysersCarbonDioxideGeysers,
GeysersHeliumGeysers,
GeysersMethaneGeysers,
GeysersNitrogenGeysers,
GeysersSulfurDioxideMagma,
GeysersWaterGeysers,
IceGeysers,
IceGeysersAmmoniaGeysers,
IceGeysersCarbonDioxideGeysers,
IceGeysersHeliumGeysers,
IceGeysersMethaneGeysers,
IceGeysersNitrogenGeysers,
IceGeysersSulfurDioxideMagma,
IceGeysersWaterGeysers,
LavaSpouts,
LavaSpoutsIronMagma,
LavaSpoutsSilicateMagma,
LavaSpoutsSulfurDioxideMagma,
Unknown(String),
}
Expand description
Codex entries related to geological points-of-interest.
Variants§
Fumarole
FumaroleAmmoniaGeysers
FumaroleCarbondioxideGeysers
FumaroleHeliumGeysers
FumaroleMethaneGeysers
FumaroleNitrogenGeysers
FumaroleSilicateVapourGeysers
FumaroleSulfurDioxideMagma
FumaroleWaterGeysers
IceFumarole
IceFumaroleAmmoniaGeysers
IceFumaroleCarbonDioxideGeysers
IceFumaroleHeliumGeysers
IceFumaroleMethaneGeysers
IceFumaroleNitrogenGeysers
IceFumaroleSilicateVapourGeysers
IceFumaroleSulfurDioxideMagma
IceFumaroleWaterGeysers
GasVents
GasVentsAmmoniaGeysers
GasVentsCarbonDioxideGeysers
GasVentsHeliumGeysers
GasVentsMethaneGeysers
GasVentsNitrogenGeysers
GasVentsSilicateVapourGeysers
GasVentsSulfurDioxideMagma
GasVentsWaterGeysers
Geysers
GeysersAmmoniaGeysers
GeysersCarbonDioxideGeysers
GeysersHeliumGeysers
GeysersMethaneGeysers
GeysersNitrogenGeysers
GeysersSulfurDioxideMagma
GeysersWaterGeysers
IceGeysers
IceGeysersAmmoniaGeysers
IceGeysersCarbonDioxideGeysers
IceGeysersHeliumGeysers
IceGeysersMethaneGeysers
IceGeysersNitrogenGeysers
IceGeysersSulfurDioxideMagma
IceGeysersWaterGeysers
LavaSpouts
LavaSpoutsIronMagma
LavaSpoutsSilicateMagma
LavaSpoutsSulfurDioxideMagma
Unknown(String)
Available on crate feature
allow-unknown
only.Implementations§
Source§impl CodexGeologicalEntry
impl CodexGeologicalEntry
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 CodexGeologicalEntry
impl Clone for CodexGeologicalEntry
Source§fn clone(&self) -> CodexGeologicalEntry
fn clone(&self) -> CodexGeologicalEntry
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 CodexGeologicalEntry
impl Debug for CodexGeologicalEntry
Source§impl<'de> Deserialize<'de> for CodexGeologicalEntry
impl<'de> Deserialize<'de> for CodexGeologicalEntry
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 CodexGeologicalEntry
impl Display for CodexGeologicalEntry
Source§impl FromStr for CodexGeologicalEntry
impl FromStr for CodexGeologicalEntry
Source§impl Hash for CodexGeologicalEntry
impl Hash for CodexGeologicalEntry
Source§impl PartialEq for CodexGeologicalEntry
impl PartialEq for CodexGeologicalEntry
Source§impl Serialize for CodexGeologicalEntry
impl Serialize for CodexGeologicalEntry
impl Eq for CodexGeologicalEntry
impl StructuralPartialEq for CodexGeologicalEntry
Auto Trait Implementations§
impl Freeze for CodexGeologicalEntry
impl RefUnwindSafe for CodexGeologicalEntry
impl Send for CodexGeologicalEntry
impl Sync for CodexGeologicalEntry
impl Unpin for CodexGeologicalEntry
impl UnwindSafe for CodexGeologicalEntry
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