How to deserialize a JSON encoded DateTime with a specified Timezone in Rust with serde?
Here is a JSON encoded object with a datetime and timezone. I believe this is an ISO 8601 format with 6 digits of precision for fractions of a second. (Microsecond precision.) { "time": "2024-08-06T11:49:09.529856Z" } This is how I currently…