usesuper::{DateTime, TimeZone};useserde::Deserialize;#[derive(Debug, Deserialize)]/// Information about date, time and timezone.
pubstructTime{/// ISO representation of date and time, time zone included
/// (see <https://services.timeanddate.com/api/doc/v3/bi01.html#ISO8601>)
/// if different from UTC. If time is not applicable, only the date is shown.
////// Example: 2011-06-08T09:18:16+02:00
/// Example: 2011-06-08T07:18:16 (UTC time)
/// Example: 2011-06-08 (only date)
pubiso: String,
/// Date and time, split up into components.
pubdatetime: DateTime,
/// Time zone information.
pubtimezone:Option<TimeZone>,
}