Enum chinese_lunisolar_calendar::EarthlyBranch[][src]

pub enum EarthlyBranch {
    First,
    Second,
    Third,
    Fourth,
    Fifth,
    Sixth,
    Seventh,
    Eighth,
    Ninth,
    Tenth,
    Eleventh,
    Twelfth,
}

列舉中國十二地支:子、丑、寅、卯、辰、巳、午、未、申、酉、戌、亥。

Variants

First

Second

Third

Fourth

Fifth

Sixth

Seventh

Eighth

Ninth

Tenth

Eleventh

Twelfth

Implementations

impl EarthlyBranch[src]

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

pub fn from_time<T: Timelike>(time: T) -> EarthlyBranch[src]

將時間轉成對應的地支。

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

透過子、丑、寅、卯、辰、巳、午、未、申、酉、戌、亥等字串來取得 EarthlyBranch 列舉實體。

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

取得 EarthlyBranch 列舉實體所代表的地支字串。

pub fn from_char(c: char) -> Option<EarthlyBranch>[src]

透過子、丑、寅、卯、辰、巳、午、未、申、酉、戌、亥等字元來取得 EarthlyBranch 列舉實體。

pub fn to_char(self) -> char[src]

取得 EarthlyBranch 列舉實體所代表的地支字元。

pub fn from_zodiac(zodiac: Zodiac) -> EarthlyBranch[src]

透過生肖來取得地支。

pub fn to_zodiac(self) -> Zodiac[src]

將地支轉成生肖。

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

取得八字重量。

Trait Implementations

impl Clone for EarthlyBranch[src]

impl Copy for EarthlyBranch[src]

impl Debug for EarthlyBranch[src]

impl Display for EarthlyBranch[src]

impl Eq for EarthlyBranch[src]

impl From<EarthlyBranch> for Zodiac[src]

impl From<Zodiac> for EarthlyBranch[src]

impl FromStr for EarthlyBranch[src]

type Err = ()

The associated error which can be returned from parsing.

impl Hash for EarthlyBranch[src]

impl Ord for EarthlyBranch[src]

impl PartialEq<EarthlyBranch> for EarthlyBranch[src]

impl PartialOrd<EarthlyBranch> for EarthlyBranch[src]

impl StructuralEq for EarthlyBranch[src]

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