Struct glean_core::Datetime
source · pub struct Datetime {
pub year: i32,
pub month: u32,
pub day: u32,
pub hour: u32,
pub minute: u32,
pub second: u32,
pub nanosecond: u32,
pub offset_seconds: i32,
}
Expand description
Representation of a date, time and timezone.
Fields§
§year: i32
The year, e.g. 2021.
month: u32
The month, 1=January.
day: u32
The day of the month.
hour: u32
The hour. 0-23
minute: u32
The minute. 0-59.
second: u32
The second. 0-60.
nanosecond: u32
The nanosecond part of the time.
offset_seconds: i32
The timezone offset from UTC in seconds. Negative for west, positive for east of UTC.
Trait Implementations§
source§impl From<DateTime<FixedOffset>> for Datetime
impl From<DateTime<FixedOffset>> for Datetime
source§fn from(dt: DateTime<FixedOffset>) -> Self
fn from(dt: DateTime<FixedOffset>) -> Self
Converts to this type from the input type.