usestd::time::{Duration, SystemTime,UNIX_EPOCH};/// Returns the current Unix timestamp in seconds.
////// If the system clock reports a time before the Unix epoch, this returns `0`.
#[must_use]pubfnunix_now_seconds_lossy()->u64{SystemTime::now().duration_since(UNIX_EPOCH).unwrap_or(Duration::ZERO).as_secs()}