[][src]Struct shakmaty::PositionErrorKinds

pub struct PositionErrorKinds { /* fields omitted */ }

Reasons for a Setup not beeing a legal Position.

Implementations

impl PositionErrorKinds[src]

pub const EMPTY_BOARD: PositionErrorKinds[src]

There are no pieces on the board.

pub const MISSING_KING: PositionErrorKinds[src]

A king is required but missing.

pub const TOO_MANY_KINGS: PositionErrorKinds[src]

A player has too many kings.

pub const PAWNS_ON_BACKRANK: PositionErrorKinds[src]

There are pawns on the backrank. Only Horde allows players to have pawns on their own backrank.

pub const INVALID_CASTLING_RIGHTS: PositionErrorKinds[src]

Some castling rights are invalid.

Can be recovered by ignoring the invalid castling rights using PositionError::ignore_invalid_castling_rights().

pub const INVALID_EP_SQUARE: PositionErrorKinds[src]

The en passant square is on the wrong rank, not empty, or the allegedly pushed pawn is not present.

Can be recovered by ignoring the invalid en passant square using PositionError::ignore_invalid_ep_square().

pub const OPPOSITE_CHECK: PositionErrorKinds[src]

The player not to move is in check.

pub const IMPOSSIBLE_CHECK: PositionErrorKinds[src]

There are impossibly many checkers, or two sliding checkers are aligned.

Such a position cannot be reached by any sequence of legal moves.

pub const IMPOSSIBLE_MATERIAL: PositionErrorKinds[src]

The material configuration cannot be reached with any sequence of legal moves.

This can be ignored using PositionError::ignore_impossible_material(), but note that other programs may not work with too much material.

pub const VARIANT: PositionErrorKinds[src]

A variant specific rule is violated.

pub const fn empty() -> PositionErrorKinds[src]

Returns an empty set of flags

pub const fn all() -> PositionErrorKinds[src]

Returns the set containing all flags.

pub const fn bits(&self) -> u32[src]

Returns the raw value of the flags currently stored.

pub fn from_bits(bits: u32) -> Option<PositionErrorKinds>[src]

Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.

pub const fn from_bits_truncate(bits: u32) -> PositionErrorKinds[src]

Convert from underlying bit representation, dropping any bits that do not correspond to flags.

pub const unsafe fn from_bits_unchecked(bits: u32) -> PositionErrorKinds[src]

Convert from underlying bit representation, preserving all bits (even those not corresponding to a defined flag).

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

Returns true if no flags are currently stored.

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

Returns true if all flags are currently set.

pub const fn intersects(&self, other: PositionErrorKinds) -> bool[src]

Returns true if there are flags common to both self and other.

pub const fn contains(&self, other: PositionErrorKinds) -> bool[src]

Returns true all of the flags in other are contained within self.

pub fn insert(&mut self, other: PositionErrorKinds)[src]

Inserts the specified flags in-place.

pub fn remove(&mut self, other: PositionErrorKinds)[src]

Removes the specified flags in-place.

pub fn toggle(&mut self, other: PositionErrorKinds)[src]

Toggles the specified flags in-place.

pub fn set(&mut self, other: PositionErrorKinds, value: bool)[src]

Inserts or removes the specified flags depending on the passed value.

Trait Implementations

impl Binary for PositionErrorKinds[src]

impl BitAnd<PositionErrorKinds> for PositionErrorKinds[src]

type Output = PositionErrorKinds

The resulting type after applying the & operator.

pub fn bitand(self, other: PositionErrorKinds) -> PositionErrorKinds[src]

Returns the intersection between the two sets of flags.

impl BitAndAssign<PositionErrorKinds> for PositionErrorKinds[src]

pub fn bitand_assign(&mut self, other: PositionErrorKinds)[src]

Disables all flags disabled in the set.

impl BitOr<PositionErrorKinds> for PositionErrorKinds[src]

type Output = PositionErrorKinds

The resulting type after applying the | operator.

pub fn bitor(self, other: PositionErrorKinds) -> PositionErrorKinds[src]

Returns the union of the two sets of flags.

impl BitOrAssign<PositionErrorKinds> for PositionErrorKinds[src]

pub fn bitor_assign(&mut self, other: PositionErrorKinds)[src]

Adds the set of flags.

impl BitXor<PositionErrorKinds> for PositionErrorKinds[src]

type Output = PositionErrorKinds

The resulting type after applying the ^ operator.

pub fn bitxor(self, other: PositionErrorKinds) -> PositionErrorKinds[src]

Returns the left flags, but with all the right flags toggled.

impl BitXorAssign<PositionErrorKinds> for PositionErrorKinds[src]

pub fn bitxor_assign(&mut self, other: PositionErrorKinds)[src]

Toggles the set of flags.

impl Clone for PositionErrorKinds[src]

impl Copy for PositionErrorKinds[src]

impl Debug for PositionErrorKinds[src]

impl Eq for PositionErrorKinds[src]

impl Extend<PositionErrorKinds> for PositionErrorKinds[src]

impl FromIterator<PositionErrorKinds> for PositionErrorKinds[src]

impl Hash for PositionErrorKinds[src]

impl LowerHex for PositionErrorKinds[src]

impl Not for PositionErrorKinds[src]

type Output = PositionErrorKinds

The resulting type after applying the ! operator.

pub fn not(self) -> PositionErrorKinds[src]

Returns the complement of this set of flags.

impl Octal for PositionErrorKinds[src]

impl Ord for PositionErrorKinds[src]

impl PartialEq<PositionErrorKinds> for PositionErrorKinds[src]

impl PartialOrd<PositionErrorKinds> for PositionErrorKinds[src]

impl StructuralEq for PositionErrorKinds[src]

impl StructuralPartialEq for PositionErrorKinds[src]

impl Sub<PositionErrorKinds> for PositionErrorKinds[src]

type Output = PositionErrorKinds

The resulting type after applying the - operator.

pub fn sub(self, other: PositionErrorKinds) -> PositionErrorKinds[src]

Returns the set difference of the two sets of flags.

impl SubAssign<PositionErrorKinds> for PositionErrorKinds[src]

pub fn sub_assign(&mut self, other: PositionErrorKinds)[src]

Disables all flags enabled in the set.

impl UpperHex for PositionErrorKinds[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> From<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, 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.