#[repr(C)]pub struct Time {
pub year: u16,
pub month: u8,
pub day: u8,
pub hour: u8,
pub minute: u8,
pub second: u8,
pub pad1: u8,
pub nanosecond: u32,
pub time_zone: i16,
pub daylight: Daylight,
pub pad2: u8,
}
Expand description
Date and time representation.
Fields§
§year: u16
Year. Valid range: 1900..=9999
.
month: u8
Month. Valid range: 1..=12
.
day: u8
Day of the month. Valid range: 1..=31
.
hour: u8
Hour. Valid range: 0..=23
.
minute: u8
Minute. Valid range: 0..=59
.
second: u8
Second. Valid range: 0..=59
.
pad1: u8
Unused padding.
nanosecond: u32
Nanosececond. Valid range: 0..=999_999_999
.
time_zone: i16
Offset in minutes from UTC. Valid range: -1440..=1440
, or
Time::UNSPECIFIED_TIMEZONE
.
daylight: Daylight
Daylight savings time information.
pad2: u8
Unused padding.
Implementations§
Trait Implementations§
impl Copy for Time
impl Eq for Time
Auto Trait Implementations§
impl Freeze for Time
impl RefUnwindSafe for Time
impl Send for Time
impl Sync for Time
impl Unpin for Time
impl UnwindSafe for Time
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)