[][src]Struct chess_move_gen::CastlingRights

pub struct CastlingRights(pub usize);

Represents the right to castle in a particular director for a particular side

Implementations

impl CastlingRights[src]

pub fn to_usize(&self) -> usize[src]

pub fn has(&self, right: CastlingRights) -> bool[src]

pub fn add(&mut self, castle: Castle, side: Side)[src]

pub fn set(&mut self, rights: CastlingRights)[src]

pub fn clear_side(&mut self, side: Side)[src]

pub fn clear(&mut self, rights: CastlingRights)[src]

pub fn side_can(&self, side: Side) -> bool[src]

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

pub fn to_string(&self) -> String[src]

pub fn from(castle: Castle, side: Side) -> CastlingRights[src]

pub fn parse(chr: char) -> Result<CastlingRights, String>[src]

Trait Implementations

impl Clone for CastlingRights[src]

impl Copy for CastlingRights[src]

impl Debug for CastlingRights[src]

impl Display for CastlingRights[src]

impl PartialEq<CastlingRights> for CastlingRights[src]

impl StructuralPartialEq for CastlingRights[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T, U> Cast<U> for T where
    U: FromCast<T>, 
[src]

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

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

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> ToString for T where
    T: Display + ?Sized
[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<V, T> VZip<V> for T where
    V: MultiLane<T>,