Struct pgn4::Turn[][src]

pub struct Turn {
    pub number: usize,
    pub double_dot: bool,
    pub turns: Vec<QuarterTurn>,
}

Representation of a single Turn

Fields

number: usize

The number that is shown at the beginning of a turn. 0 if no number should be shown.

double_dot: bool

If there should be two ’.’s at the beginning of the turn (after the number). This is used when working in sub-variations.

turns: Vec<QuarterTurn>

There are a maximum of 4 quarterturns in a turn, but in FFA there are many times when there are less than 4.

Trait Implementations

impl Clone for Turn[src]

impl Debug for Turn[src]

impl Display for Turn[src]

impl PartialEq<Turn> for Turn[src]

impl StructuralPartialEq for Turn[src]

Auto Trait Implementations

impl RefUnwindSafe for Turn

impl Send for Turn

impl Sync for Turn

impl Unpin for Turn

impl UnwindSafe for Turn

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.