Enum pleco::board::BoardError[][src]

pub enum BoardError {
    IncorrectKingNum {
        player: Player,
        num: u8,
    },
    IncorrectKingSQ {
        player: Player,
        sq: SQ,
    },
    BadEPSquare {
        sq: SQ,
    },
}

Errors concerning the current Board position.

Variants

Fields of IncorrectKingNum

Fields of IncorrectKingSQ

Fields of BadEPSquare

Trait Implementations

impl Debug for BoardError
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for BoardError

impl Sync for BoardError