pub fn parse_rfc3339(s: &str) -> Result<SystemTime, Error>
Expand description
Parse RFC3339 timestamp 2018-02-14T00:28:07Z
Supported features:
- Any precision of fractional digits
2018-02-14T00:28:07.133Z
. - The UTC timezone can be indicated with
Z
or+00:00
.
Unsupported feature: localized timestamps. Only UTC is supported.