Enum chinese_lunisolar_calendar::LunarMonth[][src]

pub enum LunarMonth {
Show variants First, LeapFirst, Second, LeapSecond, Third, LeapThird, Fourth, LeapFourth, Fifth, LeapFifth, Sixth, LeapSixth, Seventh, LeapSeventh, Eighth, LeapEighth, Ninth, LeapNinth, Tenth, LeapTenth, Eleventh, LeapEleventh, Twelfth, LeapTwelfth,
}

列舉農曆十二個月份名稱:正月、二月、三月、四月、五月、六月、七月、八月、九月、十月、冬月、臘月。包含閏月。

Variants

First

正月

LeapFirst

閏正月

Second

二月

LeapSecond

閏二月

Third

三月

LeapThird

閏三月

Fourth

四月

LeapFourth

閏四月

Fifth

五月

LeapFifth

閏五月

Sixth

六月

LeapSixth

閏六月

Seventh

七月

LeapSeventh

閏七月

Eighth

八月

LeapEighth

閏八月

Ninth

九月

LeapNinth

閏九月

Tenth

十月

LeapTenth

閏十月

Eleventh

冬月

LeapEleventh

閏冬月

Twelfth

臘月

LeapTwelfth

閏臘月

Implementations

impl LunarMonth[src]

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

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

透過農曆月份字串來取得 LunarMonth 列舉實體。

pub fn to_str(self, chinese_variant: ChineseVariant) -> &'static str[src]

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

pub unsafe fn from_u8_unsafe(month: u8, leap: bool) -> LunarMonth[src]

透過農曆月份數值和是否閏月來取得 LunarMonth 列舉實體。

pub fn from_u8(month: u8, leap: bool) -> Option<LunarMonth>[src]

透過農曆月份數值和是否閏月來取得 LunarMonth 列舉實體。

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

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

pub fn is_leap_month(self) -> bool[src]

是否為閏月。

pub fn get_total_days(self, lunisolar_year: LunisolarYear) -> Option<u8>[src]

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

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

取得八字重量。

Trait Implementations

impl Clone for LunarMonth[src]

impl Copy for LunarMonth[src]

impl Debug for LunarMonth[src]

impl Display for LunarMonth[src]

impl Eq for LunarMonth[src]

impl FromStr for LunarMonth[src]

type Err = ()

The associated error which can be returned from parsing.

impl Hash for LunarMonth[src]

impl Ord for LunarMonth[src]

impl PartialEq<LunarMonth> for LunarMonth[src]

impl PartialOrd<LunarMonth> for LunarMonth[src]

impl StructuralEq for LunarMonth[src]

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