pub type SecondsSinceUnixEpoch = LimitedResolutionTimestamp<Seconds, UnixEpoch>;
Expand description

A timestamp stored as the number of seconds (with no partial subseconds) relative to UnixEpoch. Internally, the number of seconds is represented as an i64, allowing a range of +/- ~21 times the age of the universe.

Aliased Type§

struct SecondsSinceUnixEpoch(/* private fields */);