Skip to main content

Move

Struct Move 

Source
pub struct Move {
    pub kind: Kind,
    pub role: Role,
    pub from: Square,
    pub to: Square,
    pub capture: Option<Role>,
}
Expand description

Move that a player can make.

Fields§

§kind: Kind§role: Role

redundant when given the board

§from: Square§to: Square§capture: Option<Role>

redundant when given the board

Implementations§

Source§

impl Move

Source

pub fn uci(self, mode: Mode) -> Move

Source

pub fn uci_chess(self) -> Move

Source

pub fn uci_960(self) -> Move

Source§

impl Move

Constructors

Source

pub const fn normal(role: Role, from: Square, to: Square) -> Move

Source

pub const fn capture( role: Role, from: Square, to: Square, capture: Option<Role>, ) -> Move

Source

pub const fn chess_castle(player: Player, side: Side) -> Move

Source

pub const fn castle(player: Player, from: Square, file: File) -> Move

Source

pub const fn en_passant(from: Square, to: Square) -> Move

Source

pub const fn promote(from: Square, to: Square, role: Role) -> Move

Source

pub const fn promote_capture( from: Square, to: Square, role: Role, capture: Option<Role>, ) -> Move

Source

pub fn pawn( player: Player, from: Square, to: Square, capture: Option<Role>, ) -> Vec<Move>

Source§

impl Move

Builders

Source

pub const fn capturing(self, role: Role) -> Move

Source§

impl Move

Accessors inherited from Kind

Source

pub const fn is_normal(self) -> bool

Source

pub const fn is_special(self) -> bool

Source

pub const fn specials(self) -> Option<Special>

Source§

impl Move

Accessors inherited from Special

Source

pub const fn is_en_passant(self) -> bool

Source

pub const fn is_castle(self) -> bool

Source

pub const fn castle_rook_file(self) -> Option<File>

Source

pub const fn is_castle_side(self, side: Side) -> bool

Source

pub const fn castle_side(self) -> Option<Side>

Source

pub const fn is_promote(self) -> bool

Source

pub const fn promotes(self) -> Option<Role>

Source

pub const fn is_promote_role(self, role: Role) -> bool

Source§

impl Move

Accessors inherited from capture

Source

pub const fn is_capture(self) -> bool

Source

pub const fn captures(self) -> Option<Role>

Source

pub const fn is_capture_role(self, role: Role) -> bool

Source§

impl Move

Compact encoding

Source

pub const fn code(self) -> u16

Trait Implementations§

Source§

impl Clone for Move

Source§

fn clone(&self) -> Move

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Copy for Move

Source§

impl Debug for Move

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Display for Move

Uses long algebraic notation.

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Eq for Move

Source§

impl Ord for Move

Source§

fn cmp(&self, other: &Move) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 (const: unstable) · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 (const: unstable) · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 (const: unstable) · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl PartialEq for Move

Source§

fn eq(&self, other: &Move) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialOrd for Move

Source§

fn partial_cmp(&self, other: &Move) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 (const: unstable) · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 (const: unstable) · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 (const: unstable) · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 (const: unstable) · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl StructuralPartialEq for Move

Auto Trait Implementations§

§

impl Freeze for Move

§

impl RefUnwindSafe for Move

§

impl Send for Move

§

impl Sync for Move

§

impl Unpin for Move

§

impl UnsafeUnpin for Move

§

impl UnwindSafe for Move

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.