pub struct Date {
pub day: u8,
pub month: u8,
pub year: u128,
pub timezone: i8,
pub unix_time: u128,
pub epoch_days: u128,
}Fields§
§day: u8§month: u8§year: u128§timezone: i8§unix_time: u128§epoch_days: u128Implementations§
Trait Implementations§
Auto Trait Implementations§
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