pub enum MonthDivide {
Normal,
Exact,
}Expand description
How to resolve the month pillar across the month boundary.
Variants§
Normal
Use the lunar month with 五虎遁 (not solar terms).
Exact
Use the 12 Jie (节) solar-term boundaries at exact second.
Trait Implementations§
Source§impl Clone for MonthDivide
impl Clone for MonthDivide
Source§fn clone(&self) -> MonthDivide
fn clone(&self) -> MonthDivide
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for MonthDivide
Source§impl Debug for MonthDivide
impl Debug for MonthDivide
impl Eq for MonthDivide
Source§impl Hash for MonthDivide
impl Hash for MonthDivide
Source§impl PartialEq for MonthDivide
impl PartialEq for MonthDivide
Source§fn eq(&self, other: &MonthDivide) -> bool
fn eq(&self, other: &MonthDivide) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MonthDivide
Auto Trait Implementations§
impl Freeze for MonthDivide
impl RefUnwindSafe for MonthDivide
impl Send for MonthDivide
impl Sync for MonthDivide
impl Unpin for MonthDivide
impl UnsafeUnpin for MonthDivide
impl UnwindSafe for MonthDivide
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more