[][src]Struct deck_codes::deck::Deck

pub struct Deck {
    pub format: Format,
    pub heroes: Vec<u32>,
    // some fields omitted
}

A representation of a Hearthstone deck

Fields

format: Formatheroes: Vec<u32>

The dbfid of the heroes this deck should use

Methods

impl Deck[src]

pub fn total_cards(&self) -> usize[src]

The total number of cards in the deck

pub fn cards(&self) -> Vec<(u8, u32)>[src]

A representation of the cards in the array sorted by

pub fn new(bytes: &Vec<u32>) -> Result<Self, DeckCodeError>[src]

Create a new deck from vector of u32 bytes. This representation is described here: https://hearthsim.info/docs/deckstrings/

pub fn to_byte_array(&self) -> Vec<u32>[src]

Encode the deck as a u32 vector

Trait Implementations

impl PartialEq<Deck> for Deck[src]

impl Debug for Deck[src]

Auto Trait Implementations

impl Send for Deck

impl Sync for Deck

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]