[][src]Struct shakmaty::Castles

pub struct Castles { /* fields omitted */ }

Castling paths and unmoved rooks.

Methods

impl Castles[src]

pub fn empty() -> Castles[src]

pub fn from_setup(setup: &dyn Setup) -> Result<Castles, Castles>[src]

pub fn any(&self) -> bool[src]

pub fn is_empty(&self) -> bool[src]

pub fn has(&self, color: Color, side: CastlingSide) -> bool[src]

pub fn has_side(&self, color: Color) -> bool[src]

pub fn discard_rook(&mut self, square: Square)[src]

pub fn discard_side(&mut self, color: Color)[src]

pub fn rook(&self, color: Color, side: CastlingSide) -> Option<Square>[src]

pub fn path(&self, color: Color, side: CastlingSide) -> Bitboard[src]

Gets the squares that need to be empty so that castling is possible on the given side.

Examples

use shakmaty::{Castles, CastlingSide, Bitboard, Color, Square};

let castles = Castles::default();
let path = castles.path(Color::White, CastlingSide::QueenSide);
// . . . . . . . .
// . . . . . . . .
// . . . . . . . .
// . . . . . . . .
// . . . . . . . .
// . . . . . . . .
// . . . . . . . .
// 0 1 1 1 0 . . .

assert_eq!(path, Bitboard::from(Square::B1) | Bitboard::from(Square::C1) | Bitboard::from(Square::D1));

pub fn castling_rights(&self) -> Bitboard[src]

pub fn is_chess960(&self) -> bool[src]

Trait Implementations

impl Clone for Castles[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Default for Castles[src]

impl Debug for Castles[src]

Auto Trait Implementations

impl Unpin for Castles

impl Sync for Castles

impl Send for Castles

impl UnwindSafe for Castles

impl RefUnwindSafe for Castles

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]