[][src]Enum myopic_brain::FenComponent

pub enum FenComponent {
    Board,
    Active,
    CastlingRights,
    Enpassant,
    HalfMoveCount,
    MoveCount,
}

Represents the individual components which make up a board position encoded as a FEN string.

Variants

Board
Active
CastlingRights
Enpassant
HalfMoveCount
MoveCount

Trait Implementations

impl Clone for FenComponent[src]

impl Copy for FenComponent[src]

impl Debug for FenComponent[src]

impl Eq for FenComponent[src]

impl Hash for FenComponent[src]

impl Ord for FenComponent[src]

impl PartialEq<FenComponent> for FenComponent[src]

impl PartialOrd<FenComponent> for FenComponent[src]

impl StructuralEq for FenComponent[src]

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