Parse JSON Dates In Rust
Notes
-
Serde use RFC3339 by default
-
That looks like this for UTC:
1985-04-12T23:20:50.52Z
-
And like this for a timezone:
1990-12-31T15:59:60-08:00
-
Other formats can be used with some customization code. See (Date in a custom format)