pub enum CodexEntryEventCategory {
Biology,
StellarBodies,
Civilisations,
Unknown(String),
}
Expand description
Category for a given codex entry.
Variants§
Biology
Includes things like genuses and species.
StellarBodies
Includes things like star and planet classes.
Civilisations
Includes entries related to guardians.
Unknown(String)
Available on crate feature
allow-unknown
only.Unknown codex category.
Trait Implementations§
Source§impl Clone for CodexEntryEventCategory
impl Clone for CodexEntryEventCategory
Source§fn clone(&self) -> CodexEntryEventCategory
fn clone(&self) -> CodexEntryEventCategory
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 CodexEntryEventCategory
impl Debug for CodexEntryEventCategory
Source§impl<'de> Deserialize<'de> for CodexEntryEventCategory
impl<'de> Deserialize<'de> for CodexEntryEventCategory
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 CodexEntryEventCategory
impl PartialEq for CodexEntryEventCategory
Source§impl Serialize for CodexEntryEventCategory
impl Serialize for CodexEntryEventCategory
impl StructuralPartialEq for CodexEntryEventCategory
Auto Trait Implementations§
impl Freeze for CodexEntryEventCategory
impl RefUnwindSafe for CodexEntryEventCategory
impl Send for CodexEntryEventCategory
impl Sync for CodexEntryEventCategory
impl Unpin for CodexEntryEventCategory
impl UnwindSafe for CodexEntryEventCategory
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