pub type HoursSinceUnixEpoch = LimitedResolutionTimestamp<Hours, UnixEpoch>;
Expand description

A timestamp stored as the number of hours (3,600 seconds) relative to UnixEpoch. Internally, the number of hours is represented as an i32, allowing a range of +/- ~245,147 years.

Aliased Type§

struct HoursSinceUnixEpoch(/* private fields */);