Type Alias onejoker::poker::hand_value::HandLevelPaiGow

source ·
pub type HandLevelPaiGow = HandLevelHigh;
Expand description

wiki | Pai Gow hand levels Pai Gow uses same high hands, but slightly different rules.

Aliased Type§

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

Variants§

§

FiveOfAKind = 1

§

StraightFlush = 2

§

Quads = 3

§

FullHouse = 4

§

Flush = 5

§

Straight = 6

§

Trips = 7

§

TwoPair = 8

§

Pair = 9

§

NoPair = 10