[][src]Struct vampirc_uci::uci::UciSquare

pub struct UciSquare {
    pub file: char,
    pub rank: u8,
}

A representation of a chessboard square.

Fields

file: char

The file. A character in the range of a..h.

rank: u8

The rank. A number in the range of 1..8.

Methods

impl UciSquare[src]

pub fn from(file: char, rank: u8) -> UciSquare[src]

Create a UciSquare from file character and a rank number.

Trait Implementations

impl Clone for UciSquare[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq<UciSquare> for UciSquare[src]

impl Eq for UciSquare[src]

impl Copy for UciSquare[src]

impl Default for UciSquare[src]

fn default() -> Self[src]

Default square is an invalid square with a file of \0 and the rank of 0.

impl Hash for UciSquare[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl Debug for UciSquare[src]

impl Display for UciSquare[src]

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

Formats the square in the regular notation (as in, e4).

Auto Trait Implementations

impl Send for UciSquare

impl Sync for UciSquare

Blanket Implementations

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto 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<T> Any for T where
    T: 'static + ?Sized
[src]