pub type NanosecondsSinceUnixEpoch = LimitedResolutionTimestamp<Nanoseconds, UnixEpoch>;
Expand description

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

Aliased Type§

struct NanosecondsSinceUnixEpoch(/* private fields */);