Struct san_rs::Move[][src]

pub struct Move {
    pub move_kind: MoveKind,
    pub piece: Piece,
    pub promotion: Option<Piece>,
    pub annotation: Option<Annotation>,
    pub check_type: Option<CheckType>,
    pub is_capture: bool,
}

Data structure representing a single move.

The coordinates are defined with the origin (0,0) as the top left corner, and (7,7) as the bottom right corner, with white pieces in bottom rows.

Fields

move_kind: MoveKindpiece: Piecepromotion: Option<Piece>annotation: Option<Annotation>check_type: Option<CheckType>is_capture: bool

Implementations

impl Move[src]

pub fn new(piece: Piece, move_kind: MoveKind) -> Move[src]

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

Compiles the data in a Move struct into a SAN string.

pub fn parse(value: &str) -> Result<Move>[src]

Parses a SAN string and creates a Move data struct.

Trait Implementations

impl Debug for Move[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, 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.