Enum pleco::core::Player[][src]

#[repr(u8)]
pub enum Player { White, Black, }

Enum to represent the Players White & Black.

Variants

Methods

impl Player
[src]

Returns the other player.

Examples

use pleco::core::Player;

let b = Player::Black;
assert_eq!(b.other_player(), Player::White);

Returns the relative square from a given square.

Gets the direction of a pawn push for a given player.

Returns the relative rank of a square in relation to a player.

Examples

use pleco::core::{Player,Rank};
use pleco::core::sq::SQ;

let w = Player::White;
let b = Player::Black;

assert_eq!(w.relative_rank_of_sq(SQ::A1), Rank::R1);
assert_eq!(b.relative_rank_of_sq(SQ::H8), Rank::R1);
assert_eq!(b.relative_rank_of_sq(SQ::A1), Rank::R8);

Returns the relative rank of a rank in relation to a player.

Examples

use pleco::core::{Player,Rank};
use pleco::core::sq::SQ;

let w = Player::White;
let b = Player::Black;

assert_eq!(w.relative_rank(Rank::R1), Rank::R1);
assert_eq!(b.relative_rank(Rank::R8), Rank::R1);
assert_eq!(b.relative_rank(Rank::R1), Rank::R8);

Trait Implementations

impl Copy for Player
[src]

impl Clone for Player
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Player
[src]

Formats the value using the given formatter. Read more

impl PartialEq for Player
[src]

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

This method tests for !=.

impl Not for Player
[src]

The resulting type after applying the ! operator.

Performs the unary ! operation.

impl Display for Player
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Player

impl Sync for Player