pub type cef_time_t = _cef_time_t;Expand description
Time information. Values should always be in UTC.
Aliased Type§
#[repr(C)]pub struct cef_time_t {
pub year: i32,
pub month: i32,
pub day_of_week: i32,
pub day_of_month: i32,
pub hour: i32,
pub minute: i32,
pub second: i32,
pub millisecond: i32,
}Fields§
§year: i32Four or five digit year “2007” (1601 to 30827 on Windows, 1970 to 2038 on 32-bit POSIX)
month: i321-based month (values 1 = January, etc.)
day_of_week: i320-based day of week (0 = Sunday, etc.)
day_of_month: i321-based day of month (1-31)
hour: i32Hour within the current day (0-23)
minute: i32Minute within the current hour (0-59)
second: i32Second within the current minute (0-59 plus leap seconds which may take it up to 60).
millisecond: i32Milliseconds within the current second (0-999)