Function timestamp_utc_ms
Source pub fn timestamp_utc_ms() -> Option<i64>
Expand description
Returns an Option<i64>
with the current UTC timestamp in milliseconds.
§Example
use quad_timestamp::timestamp_utc_ms;
let timestamp = timestamp_utc_ms();
§Returns
Option<i64>
- The current UTC timestamp in milliseconds. None if the timestamp could not be retrieved.