usestd::time::SystemTime;/// Returns the current wall-clock time as seconds since the Unix epoch.
pubstructTimestamp;implTimestamp{/// Returns seconds since the Unix epoch as a `u64`.
pubfnnow()->u64{SystemTime::now().duration_since(SystemTime::UNIX_EPOCH).expect("timing error!").as_secs()}}