pub struct Date {
pub day: u8,
pub month: u8,
pub year: u64,
pub time_zone: Zone,
pub unix_time: u128,
pub era_days: u128,
pub view: CalendarView,
}Fields§
§day: u8§month: u8§year: u64§time_zone: Zone§unix_time: u128§era_days: u128§view: CalendarViewImplementations§
Trait Implementations§
Source§impl Ord for Date
impl Ord for Date
Source§impl PartialOrd for Date
impl PartialOrd for Date
impl Copy for Date
impl Eq for Date
impl StructuralPartialEq for Date
Auto Trait Implementations§
impl Freeze for Date
impl RefUnwindSafe for Date
impl Send for Date
impl Sync for Date
impl Unpin for Date
impl UnwindSafe for Date
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