Struct chinese_lunisolar_calendar::LunarYear[][src]

pub struct LunarYear { /* fields omitted */ }

農曆年份,由天干加地支組成,六十年一輪。

Implementations

impl LunarYear[src]

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

透過農曆年份字串來取得 LunarYear 實體。

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

取得 LunarYear 實體所代表的農曆年份字串。

pub fn from_era(
    heavenly_stems: HeavenlyStems,
    earthly_branch: EarthlyBranch
) -> LunarYear
[src]

透過中國天干地支來取得 LunarYear 實體。

pub fn get_heavenly_stems(&self) -> HeavenlyStems[src]

取得天干。

pub fn get_earthly_branch(&self) -> EarthlyBranch[src]

取得地支。

pub fn get_zodiac(&self) -> Zodiac[src]

取得生肖。

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

取得八字重量。

Trait Implementations

impl Clone for LunarYear[src]

impl Copy for LunarYear[src]

impl Debug for LunarYear[src]

impl Display for LunarYear[src]

impl Eq for LunarYear[src]

impl FromStr for LunarYear[src]

type Err = ()

The associated error which can be returned from parsing.

impl Hash for LunarYear[src]

impl Ord for LunarYear[src]

impl PartialEq<LunarYear> for LunarYear[src]

impl PartialOrd<LunarYear> for LunarYear[src]

impl StructuralEq for LunarYear[src]

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