Skip to main content

Module timestamp

Module timestamp 

Source
Expand description

UTC timestamp helpers shared across the workspace.

All functions use std::time::SystemTime — no external date/time crates required. The O(1) Hinnant algorithm is used internally to convert Unix seconds to a calendar date without iterating over years or months.

Functions§

utc_now_compact
Returns the current UTC time in compact format: YYYYMMDD_HHMMSS.
utc_now_datetime
Returns the current UTC time as a (year, month, day, hour, minute, second) tuple.
utc_now_rfc3339
Returns the current UTC time in RFC 3339 format: YYYY-MM-DDTHH:MM:SSZ.