pub enum CodexEntryEventSubcategory {
OrganicStructures,
Stars,
Terrestrials,
GasGiants,
GeologyAndAnomalies,
Thargoid,
Unknown(String),
}Expand description
Subcategory for a given codex entry.
Variants§
OrganicStructures
Subcategory related to organic structures like genuses and species.
Stars
Subcategory related to star bodies.
Terrestrials
Subcategory related to planets.
GasGiants
Subcategory related to gas giants.
GeologyAndAnomalies
Thargoid
Subcategory related to Thargoids and their activity.
Unknown(String)
Available on crate feature
allow-unknown only.Unknown subcategory.
Trait Implementations§
Source§impl Clone for CodexEntryEventSubcategory
impl Clone for CodexEntryEventSubcategory
Source§fn clone(&self) -> CodexEntryEventSubcategory
fn clone(&self) -> CodexEntryEventSubcategory
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CodexEntryEventSubcategory
impl Debug for CodexEntryEventSubcategory
Source§impl<'de> Deserialize<'de> for CodexEntryEventSubcategory
impl<'de> Deserialize<'de> for CodexEntryEventSubcategory
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 CodexEntryEventSubcategory
impl PartialEq for CodexEntryEventSubcategory
Source§fn eq(&self, other: &CodexEntryEventSubcategory) -> bool
fn eq(&self, other: &CodexEntryEventSubcategory) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CodexEntryEventSubcategory
Auto Trait Implementations§
impl Freeze for CodexEntryEventSubcategory
impl RefUnwindSafe for CodexEntryEventSubcategory
impl Send for CodexEntryEventSubcategory
impl Sync for CodexEntryEventSubcategory
impl Unpin for CodexEntryEventSubcategory
impl UnsafeUnpin for CodexEntryEventSubcategory
impl UnwindSafe for CodexEntryEventSubcategory
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