Skip to main content

Module date

Module date 

Source
Expand description

UTC date and time helpers.

DateUtils returns the current UTC time and parses/formats RFC 3339 timestamps.

let now = DateUtils::now();
let text = DateUtils::format_rfc3339(&now);
let parsed = DateUtils::parse_rfc3339(&text)?;

Structs§

DateUtils
Helpers for current time and RFC 3339 conversion in UTC.