[][src]Struct vampirc_uci::uci::UciFen

pub struct UciFen(pub String);

A representation of the notation in the FEN notation.

Implementations

impl UciFen[src]

pub fn as_str(&self) -> &str[src]

Returns the FEN string.

Trait Implementations

impl Clone for UciFen[src]

impl Debug for UciFen[src]

impl Display for UciFen[src]

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

Outputs the FEN string.

impl Eq for UciFen[src]

impl<'_> From<&'_ str> for UciFen[src]

fn from(s: &str) -> Self[src]

Constructs an UciFen object from a &str containing a FEN position. Does not validate the FEN.

impl Hash for UciFen[src]

impl PartialEq<UciFen> for UciFen[src]

impl StructuralEq for UciFen[src]

impl StructuralPartialEq for UciFen[src]

Auto Trait Implementations

impl RefUnwindSafe for UciFen

impl Send for UciFen

impl Sync for UciFen

impl Unpin for UciFen

impl UnwindSafe for UciFen

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.