Skip to main content

PQLBoard

Type Alias PQLBoard 

Source
pub type PQLBoard = Board;
Expand description

Community-card board (flop, turn, river) used by PQL queries.

Aliased Type§

pub struct PQLBoard {
    pub flop: Option<HandN<3>>,
    pub turn: Option<Card>,
    pub river: Option<Card>,
}

Fields§

§flop: Option<HandN<3>>

Three flop cards, or None preflop.

§turn: Option<Card>

Turn card, when dealt.

§river: Option<Card>

River card, when dealt.