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.