ydke_parser 0.2.0

A parser for YGOPro deck URLs in the YDKE format
Documentation
1
2
3
4
5
6
7
/// Represents a YGOPro deck with main deck, extra deck, and side deck.
#[derive(Debug, Clone, PartialEq)]
pub struct Deck {
    pub main: Vec<u32>,
    pub extra: Vec<u32>,
    pub side: Vec<u32>,
}