cef_time_t

Type Alias cef_time_t 

Source
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: i32

Four or five digit year “2007” (1601 to 30827 on Windows, 1970 to 2038 on 32-bit POSIX)

§month: i32

1-based month (values 1 = January, etc.)

§day_of_week: i32

0-based day of week (0 = Sunday, etc.)

§day_of_month: i32

1-based day of month (1-31)

§hour: i32

Hour within the current day (0-23)

§minute: i32

Minute within the current hour (0-59)

§second: i32

Second within the current minute (0-59 plus leap seconds which may take it up to 60).

§millisecond: i32

Milliseconds within the current second (0-999)