useserde::{Deserialize, Serialize};useuuid::Uuid;/// The Card (Set Deck) Data Model describes the properties of a single card found in a Deck (Set).
#[derive(Debug, Clone, Serialize, Deserialize)]#[serde(rename_all ="camelCase")]pubstructCardSetDeck{/// The number of this cards in the deck.
pubcount:u32,
/// If the card is foiled.
pubis_foil:Option<bool>,
/// The universal unique identifier (v5) generated by MTGJSON.
pubuuid: Uuid,
}