Rust's chrono::Local
contains the local timezone information but does not seem to have any methods to get the value as a string or a number of seconds offset.
Any idea's how to get the correct local offset so that
DateTime::parse_from_rfc3339([iso8601 date] + [timezone]).unwrap().with_timezone(&Local)
will return a DateTime
that is in the default current timezone of the computer the code is running on.