usestd::time::{SystemTime,UNIX_EPOCH};/// Returns the current Unix timestamp in seconds.
////// # Panics
////// Panics if the system time is before the Unix epoch.
#[must_use]pubfntimestamp()->u64{SystemTime::now().duration_since(UNIX_EPOCH).unwrap().as_secs()}