Type Alias onejoker::poker::hand_value::HandLevelMexican

source ·
pub type HandLevelMexican = HandLevelStripped;
Expand description

wiki | Mexican poker hand levels Mexican poker uses stripped deck high hands.

Aliased Type§

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

Variants§

§

FiveOfAKind = 1

§

StraightFlush = 2

§

Quads = 3

§

Flush = 4

§

FullHouse = 5

§

Straight = 6

§

Trips = 7

§

TwoPair = 8

§

Pair = 9

§

NoPair = 10