Enum pleco::core::GenTypes[][src]

pub enum GenTypes {
    All,
    Captures,
    Quiets,
    QuietChecks,
    Evasions,
    NonEvasions,
}

Types of move generating options.

GenTypes::All -> All available moves.

GenTypes::Captures -> All captures and both capture/non-capture promotions.

GenTypes::Quiets -> All non captures and both capture/non-capture promotions.

GenTypes::QuietChecks -> Moves likely to give check.

GenTypes::Evasions -> Generates evasions for a board in check.

GenTypes::NonEvasions -> Generates all moves for a board not in check.

Safety

GenTypes::QuietChecks and GenTypes::NonEvasions can only be used if the board if not in check, while GenTypes::Evasions can only be used if the the board is in check. The remaining GenTypes can be used legally whenever.

Variants

Trait Implementations

impl Copy for GenTypes
[src]

impl Clone for GenTypes
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for GenTypes
[src]

Formats the value using the given formatter. Read more

impl PartialEq for GenTypes
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

impl Send for GenTypes

impl Sync for GenTypes