pub enum CodexPlanetEntry {
Show 90 variants
EarthLike,
AmmoniaWorlds,
WaterWorlds,
WaterGiant,
WaterGiantWithLife,
SudarskyClassI,
SudarskyClassII,
SudarskyClassIII,
SudarskyClassIV,
SudarskyClassV,
SupermassiveBlackHoles,
Helium,
HeliumRich,
HighMetalContent,
Ice,
MetalRich,
RockyIce,
Rocky,
MetalRichNoAtmosphere,
HighMetalContentNoAtmosphere,
IceNoAtmosphere,
RockyIceNoAtmosphere,
RockyNoAtmosphere,
DenseAmmoniaWorlds,
DenseWaterWorlds,
DenseHighMetalContent,
DenseIce,
DenseMetalRich,
DenseRockyIce,
DenseRocky,
StandardGiants,
StandardWaterWorlds,
StandardPlanetStandard,
StandardPlanetTerraformable,
StandardAmmoniaWorlds,
StandardGiantWithAmmoniaLife,
StandardGiantWithWaterLife,
StandardHelium,
StandardHeliumRich,
StandardWaterGiant,
StandardWaterGiantWithLife,
StandardHighMetalContentNoAtmosphere,
StandardIceNoAtmosphere,
StandardMetalRichNoAtmosphere,
StandardRockyIceNoAtmosphere,
StandardRockyNoAtmosphere,
StandardSudarskyClassI,
StandardSudarskyClassII,
StandardSudarskyClassIII,
StandardSudarskyClassIV,
StandardSudarskyClassV,
StandardHighMetalContent,
StandardIce,
StandardMetalRich,
StandardRockyIce,
StandardRocky,
LightAmmoniaWorlds,
LightWaterWorlds,
LightHighMetalContent,
LightIce,
LightMetalRich,
LightRockyIce,
LightRocky,
GiantWithAmmoniaLife,
GiantWithWaterLife,
GreenGiants,
GreenGiantWithAmmoniaLife,
GreenGiantWithWaterLife,
GreenSudarskyClassI,
GreenSudarskyClassII,
GreenSudarskyClassIII,
GreenSudarskyClassIV,
GreenSudarskyClassV,
GreenWaterGiant,
GreenWaterGiantWithLife,
GreenHelium,
GreenHeliumRich,
TerraformableAmmoniaWorlds,
TerraformableWaterWorlds,
TerraformableHighMetalContentNoAtmosphere,
TerraformableIceNoAtmosphere,
TerraformableMetalRichNoAtmosphere,
TerraformableRockyIceNoAtmosphere,
TerraformableRockyNoAtmosphere,
TerraformableHighMetalContent,
TerraformableIce,
TerraformableMetalRich,
TerraformableRockyIce,
TerraformableRocky,
Unknown(String),
}
Expand description
Codex entries related to planet types.
Variants§
EarthLike
AmmoniaWorlds
WaterWorlds
WaterGiant
WaterGiantWithLife
SudarskyClassI
SudarskyClassII
SudarskyClassIII
SudarskyClassIV
SudarskyClassV
SupermassiveBlackHoles
Helium
HeliumRich
HighMetalContent
Ice
MetalRich
RockyIce
Rocky
MetalRichNoAtmosphere
HighMetalContentNoAtmosphere
IceNoAtmosphere
RockyIceNoAtmosphere
RockyNoAtmosphere
DenseAmmoniaWorlds
DenseWaterWorlds
DenseHighMetalContent
DenseIce
DenseMetalRich
DenseRockyIce
DenseRocky
StandardGiants
StandardWaterWorlds
StandardPlanetStandard
StandardPlanetTerraformable
StandardAmmoniaWorlds
StandardGiantWithAmmoniaLife
StandardGiantWithWaterLife
StandardHelium
StandardHeliumRich
StandardWaterGiant
StandardWaterGiantWithLife
StandardHighMetalContentNoAtmosphere
StandardIceNoAtmosphere
StandardMetalRichNoAtmosphere
StandardRockyIceNoAtmosphere
StandardRockyNoAtmosphere
StandardSudarskyClassI
StandardSudarskyClassII
StandardSudarskyClassIII
StandardSudarskyClassIV
StandardSudarskyClassV
StandardHighMetalContent
StandardIce
StandardMetalRich
StandardRockyIce
StandardRocky
LightAmmoniaWorlds
LightWaterWorlds
LightHighMetalContent
LightIce
LightMetalRich
LightRockyIce
LightRocky
GiantWithAmmoniaLife
GiantWithWaterLife
GreenGiants
GreenGiantWithAmmoniaLife
GreenGiantWithWaterLife
GreenSudarskyClassI
GreenSudarskyClassII
GreenSudarskyClassIII
GreenSudarskyClassIV
GreenSudarskyClassV
GreenWaterGiant
GreenWaterGiantWithLife
GreenHelium
GreenHeliumRich
TerraformableAmmoniaWorlds
TerraformableWaterWorlds
TerraformableHighMetalContentNoAtmosphere
TerraformableIceNoAtmosphere
TerraformableMetalRichNoAtmosphere
TerraformableRockyIceNoAtmosphere
TerraformableRockyNoAtmosphere
TerraformableHighMetalContent
TerraformableIce
TerraformableMetalRich
TerraformableRockyIce
TerraformableRocky
Unknown(String)
Available on crate feature
allow-unknown
only.Implementations§
Source§impl CodexPlanetEntry
impl CodexPlanetEntry
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 CodexPlanetEntry
impl Clone for CodexPlanetEntry
Source§fn clone(&self) -> CodexPlanetEntry
fn clone(&self) -> CodexPlanetEntry
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 CodexPlanetEntry
impl Debug for CodexPlanetEntry
Source§impl<'de> Deserialize<'de> for CodexPlanetEntry
impl<'de> Deserialize<'de> for CodexPlanetEntry
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 CodexPlanetEntry
impl Display for CodexPlanetEntry
Source§impl FromStr for CodexPlanetEntry
impl FromStr for CodexPlanetEntry
Source§impl Hash for CodexPlanetEntry
impl Hash for CodexPlanetEntry
Source§impl PartialEq for CodexPlanetEntry
impl PartialEq for CodexPlanetEntry
Source§impl Serialize for CodexPlanetEntry
impl Serialize for CodexPlanetEntry
impl Eq for CodexPlanetEntry
impl StructuralPartialEq for CodexPlanetEntry
Auto Trait Implementations§
impl Freeze for CodexPlanetEntry
impl RefUnwindSafe for CodexPlanetEntry
impl Send for CodexPlanetEntry
impl Sync for CodexPlanetEntry
impl Unpin for CodexPlanetEntry
impl UnwindSafe for CodexPlanetEntry
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