Enum chinese_lunisolar_calendar::Zodiac[][src]

pub enum Zodiac {
    Rat,
    Ox,
    Tiger,
    Rabbit,
    Dragon,
    Snake,
    Horse,
    Goat,
    Monkey,
    Rooster,
    Dog,
    Pig,
}

列舉中國十二生肖:鼠、牛、虎、兔、龍、蛇、馬、羊、猴、雞、狗、豬。

Variants

Rat

Ox

Tiger

Rabbit

Dragon

Snake

Horse

Goat

Monkey

Rooster

Dog

Pig

Implementations

impl Zodiac[src]

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

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

透過鼠、牛、虎、兔、龍、蛇、馬、羊、猴、雞、狗、豬等字串來取得 Zodiac 列舉實體。

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

取得 Zodiac 列舉實體所代表的生肖字串。

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

透過鼠、牛、虎、兔、龍、蛇、馬、羊、猴、雞、狗、豬等字元來取得 Zodiac 列舉實體。

pub fn to_char(self, chinese_variant: ChineseVariant) -> char[src]

取得 Zodiac 列舉實體所代表的生肖字元。

pub fn from_earthly_branch(earthly_branch: EarthlyBranch) -> Zodiac[src]

透過地支來取得生肖。

pub fn to_earthly_branch(self) -> EarthlyBranch[src]

將生肖轉成地支。

Trait Implementations

impl Clone for Zodiac[src]

impl Copy for Zodiac[src]

impl Debug for Zodiac[src]

impl Display for Zodiac[src]

impl Eq for Zodiac[src]

impl From<EarthlyBranch> for Zodiac[src]

impl From<Zodiac> for EarthlyBranch[src]

impl FromStr for Zodiac[src]

type Err = ()

The associated error which can be returned from parsing.

impl Hash for Zodiac[src]

impl Ord for Zodiac[src]

impl PartialEq<Zodiac> for Zodiac[src]

impl PartialOrd<Zodiac> for Zodiac[src]

impl StructuralEq for Zodiac[src]

impl StructuralPartialEq for Zodiac[src]

Auto Trait Implementations

impl RefUnwindSafe for Zodiac

impl Send for Zodiac

impl Sync for Zodiac

impl Unpin for Zodiac

impl UnwindSafe for Zodiac

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.