[][src]Struct vampirc_uci::uci::UciMove

pub struct UciMove {
    pub from: UciSquare,
    pub to: UciSquare,
    pub promotion: Option<UciPiece>,
}

Representation of a chess move.

Fields

from: UciSquare

The source square.

to: UciSquare

The destination square.

promotion: Option<UciPiece>

The piece to be promoted to, if any.

Methods

impl UciMove[src]

pub fn from_to(from: UciSquare, to: UciSquare) -> UciMove[src]

Create a regular, non-promotion move from the from square to the to square.

Trait Implementations

impl Clone for UciMove[src]

impl Copy for UciMove[src]

impl Debug for UciMove[src]

impl Display for UciMove[src]

fn fmt(&self, f: &mut Formatter) -> FmtResult[src]

Formats the move in the UCI move notation.

e2e4 – A move from the square e2 to the square e4. a2a1q – A move from the square a2 to the square a1 with the pawn promoting to a Queen..

impl Eq for UciMove[src]

impl Hash for UciMove[src]

impl PartialEq<UciMove> for UciMove[src]

impl StructuralEq for UciMove[src]

impl StructuralPartialEq for UciMove[src]

Auto Trait Implementations

impl RefUnwindSafe for UciMove

impl Send for UciMove

impl Sync for UciMove

impl Unpin for UciMove

impl UnwindSafe for UciMove

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> 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.