Type Alias onejoker::poker::hand_value::HandLevelManilla

source ·
pub type HandLevelManilla = HandLevelStripped;
Expand description

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

Aliased Type§

enum HandLevelManilla {
    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