mtgjson 5.2.2

Unofficially provided lightweight models of the data provided by MTGJSON.
Documentation
use serde::{Deserialize, Serialize};

/// The frame effect of a card.
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash, Serialize, Deserialize)]
#[serde(rename_all = "lowercase")]
#[allow(missing_docs)]
pub enum FrameEffect {
    BoosterFun,
    ColorShifted,
    Companion,
    CompassLandDfc,
    ConvertDfc,
    Devoid,
    Draft,
    Enchantment,
    Etched,
    ExtendedArt,
    FanDfc,
    FullArt,
    Gilded,
    Inverted,
    Legendary,
    Lesson,
    Miracle,
    MoonEldraziDfc,
    NyxTouched,
    OriginPwDfc,
    ShatteredGlass,
    Showcase,
    Snow,
    Spree,
    SunMoonDfc,
    Textless,
    Tombstone,
    UpsideDownDfc,
    WaxingAndWaningMoonDfc,
}