Enum holdem::HandRankClass [] [src]

pub enum HandRankClass {
    HighCard,
    OnePair,
    TwoPair,
    ThreeOfAKind,
    Straight,
    Flush,
    FullHouse,
    FourOfAKind,
    StraightFlush,
}

All hand rank classes that a 5-card hand can be worth in Texas Hold'em.

Variants

Trait Implementations

impl Debug for HandRankClass
[src]

Formats the value using the given formatter.

impl PartialEq for HandRankClass
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for HandRankClass
[src]

impl Hash for HandRankClass
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl PartialOrd for HandRankClass
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Ord for HandRankClass
[src]

This method returns an Ordering between self and other. Read more