Type Alias onejoker::poker::hand_value::HandLevelAceToSix

source ·
pub type HandLevelAceToSix = HandLevelDeuceToSeven;
Expand description

wiki | Ace-to-six lowball hand levels Ace-to-six lowball hands, e.g. London lowball, etc. Same as Deuce-to-seven.

Aliased Type§

enum HandLevelAceToSix {
    NoPair = 1,
    Pair = 2,
    TwoPair = 3,
    Trips = 4,
    Straight = 5,
    Flush = 6,
    FullHouse = 7,
    Quads = 8,
    StraightFlush = 9,
}

Variants§

§

NoPair = 1

§

Pair = 2

§

TwoPair = 3

§

Trips = 4

§

Straight = 5

§

Flush = 6

§

FullHouse = 7

§

Quads = 8

§

StraightFlush = 9