pub struct LunarInfo {
pub day: i32,
pub month: i32,
pub year: i32,
pub is_leap_month: bool,
pub date_string: String,
}Expand description
Lunar date information
Fields§
§day: i32§month: i32§year: i32§is_leap_month: bool§date_string: StringTrait Implementations§
Auto Trait Implementations§
impl Freeze for LunarInfo
impl RefUnwindSafe for LunarInfo
impl Send for LunarInfo
impl Sync for LunarInfo
impl Unpin for LunarInfo
impl UnsafeUnpin for LunarInfo
impl UnwindSafe for LunarInfo
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