#[repr(C)]pub struct DateTime {
pub time_zone_minutes: i16,
pub year: u16,
pub month: u8,
pub day_of_week: u8,
pub day: u8,
pub hour: u8,
pub minute: u8,
pub second: u8,
}
Fields§
§time_zone_minutes: i16
§year: u16
§month: u8
§day_of_week: u8
§day: u8
§hour: u8
§minute: u8
§second: u8
Trait Implementations§
source§impl PartialEq<DateTime> for DateTime
impl PartialEq<DateTime> for DateTime
impl Copy for DateTime
impl Eq for DateTime
impl StructuralEq for DateTime
impl StructuralPartialEq for DateTime
Auto Trait Implementations§
impl RefUnwindSafe for DateTime
impl Send for DateTime
impl Sync for DateTime
impl Unpin for DateTime
impl UnwindSafe for DateTime
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