ed-journals 0.12.2

Provides models for representing and parsing elite dangerous journal files
Documentation
use std::fmt::{Display, Formatter};

use serde::{Deserialize, Serialize};

#[derive(Debug, Serialize, Deserialize, Clone, PartialEq)]
pub enum Superpower {
    Alliance,
    Empire,
    Federation,
    Guardian,
    Independent,
    PilotsFederation,
    PlayerPilots,
    Thargoid,

    #[cfg(feature = "allow-unknown")]
    #[cfg_attr(docsrs, doc(cfg(feature = "allow-unknown")))]
    #[serde(untagged)]
    Unknown(String),
}

impl Display for Superpower {
    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
        write!(
            f,
            "{}",
            match self {
                Superpower::Alliance => "Alliance",
                Superpower::Empire => "Empire",
                Superpower::Federation => "Federation",
                Superpower::Guardian => "Guardian",
                Superpower::Independent => "Independent",
                Superpower::PilotsFederation => "Pilots Federation",
                Superpower::PlayerPilots => "Player Pilots",
                Superpower::Thargoid => "Thargoid",

                #[cfg(feature = "allow-unknown")]
                Superpower::Unknown(unknown) => return write!(f, "Unknown superpower: {unknown}"),
            }
        )
    }
}