pub trait EpochTime { // Required methods fn epoch_ns(&self) -> u64; fn epoch_s(&self) -> u64; }
Convert to nanoseconds.
Panics when the value would overflow u64. This happens for dates in the year 2554.
Convert to seconds.