[][src]Enum cetkaik_full_state_transition::Season

pub enum Season {
    Iei2,
    Xo1,
    Kat2,
    Iat1,
}

Represents the season. Currently, only four-season games are supported. /季節を表現する。今のところ4季制のことしか考えていない。

Variants

Iei2

春, Spring

Xo1

夏, Summer

Kat2

秋, Autumn

Iat1

冬, Winter

Implementations

impl Season[src]

#[must_use]pub fn next(self) -> Option<Self>[src]

#[must_use]pub fn to_index(self) -> usize[src]

Trait Implementations

impl Clone for Season[src]

impl Copy for Season[src]

impl Debug for Season[src]

impl<'de> Deserialize<'de> for Season[src]

impl Eq for Season[src]

impl Hash for Season[src]

impl PartialEq<Season> for Season[src]

impl Serialize for Season[src]

impl StructuralEq for Season[src]

impl StructuralPartialEq for Season[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,