pub type DaysSinceUnixEpoch = LimitedResolutionTimestamp<Days, UnixEpoch>;
Expand description
A timestamp stored as the number of days (86,400 seconds) relative to
UnixEpoch
. Internally, the number of days is represented as an i32
,
allowing a range of +/- ~5.88 million years.
Aliased Type§
struct DaysSinceUnixEpoch(/* private fields */);