pub type MillisecondsSinceUnixEpoch = LimitedResolutionTimestamp<Milliseconds, UnixEpoch>;
Expand description

A timestamp stored as the number of milliseconds (1/1,000th of a second) relative to UnixEpoch. Internally, the number of milliseconds is represented as an i64, allowing a range of +/- ~292.5 million years.

Aliased Type§

struct MillisecondsSinceUnixEpoch(/* private fields */);