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

Implementations

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]

impl Copy for UciSquare[src]

impl Debug 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 Display for UciSquare[src]

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

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

impl Eq for UciSquare[src]

impl Hash for UciSquare[src]

impl PartialEq<UciSquare> for UciSquare[src]

impl StructuralEq for UciSquare[src]

impl StructuralPartialEq for UciSquare[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> 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.