[][src]Enum hodgepodge::time::Month

pub enum Month {
    January,
    February,
    March,
    April,
    May,
    June,
    July,
    August,
    September,
    October,
    November,
    December,
}

The months of the year

Variants

January

January is the first month of the year

February

February is the second month of the year

March

March is the third month of the year

April

April is the fourth month of the year

May

May is the fifth month of the year

June

June is the sixth month of the year

July

July is the seventh month of the year

August

August is the eighth month of the year

September

September is the ninth month of the year

October

October is the tenth month of the year

November

November is the eleventh month of the year

December

December is the twelfth month of the year

Trait Implementations

impl Clone for Month[src]

impl Copy for Month[src]

impl Debug for Month[src]

impl EnumCount for Month[src]

impl IntoEnumIterator for Month[src]

type Iterator = MonthIter

Auto Trait Implementations

impl RefUnwindSafe for Month

impl Send for Month

impl Sync for Month

impl Unpin for Month

impl UnwindSafe for Month

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.