pub enum CodexThargoidEntry {
Show 38 variants
LargeSpike,
Tower,
TowerLow,
TowerMedium,
TowerHigh,
TowerExtraHigh,
Coral,
CoralTree,
CoralRoot,
Canister,
Datascan,
Pod,
Transmitter,
UnknownArtifact,
UnknownProbe,
UnknownRelay,
Barnacles,
CausticGenerator,
Banshee,
Revenant,
Scavenger,
Scouts,
Marauder,
Berserker,
Regenerator,
Inciter,
Interceptors,
Basilisk,
Cyclops,
Glaive,
Scythe,
Hunter,
Medusa,
Hydra,
Orthrus,
WreckedInterceptor,
WreckedScout,
Unknown(String),
}
Expand description
Codex entries related to Thargoids.
Variants§
LargeSpike
Tower
TowerLow
TowerMedium
TowerHigh
TowerExtraHigh
Coral
CoralTree
CoralRoot
Canister
Datascan
Pod
Transmitter
UnknownArtifact
UnknownProbe
UnknownRelay
Barnacles
CausticGenerator
Banshee
Revenant
Scavenger
Scouts
Marauder
Berserker
Regenerator
Inciter
Interceptors
Basilisk
Cyclops
Glaive
Scythe
Hunter
Medusa
Hydra
Orthrus
WreckedInterceptor
WreckedScout
Unknown(String)
Available on crate feature
allow-unknown
only.Implementations§
Source§impl CodexThargoidEntry
impl CodexThargoidEntry
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 CodexThargoidEntry
impl Clone for CodexThargoidEntry
Source§fn clone(&self) -> CodexThargoidEntry
fn clone(&self) -> CodexThargoidEntry
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 CodexThargoidEntry
impl Debug for CodexThargoidEntry
Source§impl<'de> Deserialize<'de> for CodexThargoidEntry
impl<'de> Deserialize<'de> for CodexThargoidEntry
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 CodexThargoidEntry
impl Display for CodexThargoidEntry
Source§impl FromStr for CodexThargoidEntry
impl FromStr for CodexThargoidEntry
Source§impl Hash for CodexThargoidEntry
impl Hash for CodexThargoidEntry
Source§impl PartialEq for CodexThargoidEntry
impl PartialEq for CodexThargoidEntry
Source§impl Serialize for CodexThargoidEntry
impl Serialize for CodexThargoidEntry
impl Eq for CodexThargoidEntry
impl StructuralPartialEq for CodexThargoidEntry
Auto Trait Implementations§
impl Freeze for CodexThargoidEntry
impl RefUnwindSafe for CodexThargoidEntry
impl Send for CodexThargoidEntry
impl Sync for CodexThargoidEntry
impl Unpin for CodexThargoidEntry
impl UnwindSafe for CodexThargoidEntry
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