Enum chinese_lunisolar_calendar::SolarMonth[][src]

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

列舉西曆十二個月份名稱:一月、二月、三月、四月、五月、六月、七月、八月、九月、十月、十一月、十二月。

Variants

January

一月

February

二月

March

三月

April

四月

May

五月

June

六月

July

七月

August

八月

September

九月

October

十月

November

十一月

December

十二月

Implementations

impl SolarMonth[src]

pub unsafe fn from_ordinal_unsafe(number: i8) -> SolarMonth[src]

pub fn from_str<S: AsRef<str>>(s: S) -> Option<SolarMonth>[src]

透過西曆月份字串來取得 SolarMonth 列舉實體。

pub fn to_str(self) -> &'static str[src]

取得 SolarMonth 列舉實體所代表的西曆月份字串。

pub unsafe fn from_u8_unsafe(month: u8) -> SolarMonth[src]

透過西曆月份數值來取得 SolarMonth 列舉實體。

pub fn from_u8(month: u8) -> Option<SolarMonth>[src]

透過西曆月份數值來取得 SolarMonth 列舉實體。

pub fn to_u8(self) -> u8[src]

取得 SolarMonth 列舉實體所代表的西曆月份數值。

pub fn get_total_days<Y: Into<SolarYear>>(self, solar_year: Y) -> u8[src]

傳入指定的西曆年,並計算此西曆月在這個指定的西曆年內共有幾天。

Trait Implementations

impl Clone for SolarMonth[src]

impl Copy for SolarMonth[src]

impl Debug for SolarMonth[src]

impl Display for SolarMonth[src]

impl Eq for SolarMonth[src]

impl FromStr for SolarMonth[src]

type Err = ()

The associated error which can be returned from parsing.

impl Hash for SolarMonth[src]

impl Ord for SolarMonth[src]

impl PartialEq<SolarMonth> for SolarMonth[src]

impl PartialOrd<SolarMonth> for SolarMonth[src]

impl StructuralEq for SolarMonth[src]

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