usestd::time::SystemTime;pub(crate)typeTimestamp=u64;/// Get the current UNIX timestamp
////// # Panics
////// Panics when the system clock is incorrectly configured
pub(crate)fntimestamp()-> Timestamp{SystemTime::now().duration_since(SystemTime::UNIX_EPOCH).expect("SystemTime before UNIX EPOCH!").as_secs()}