pub trait TimeZoneInput {
    // Required methods
    fn gmt_offset(&self) -> Option<GmtOffset>;
    fn time_zone_id(&self) -> Option<TimeZoneBcp47Id>;
    fn metazone_id(&self) -> Option<MetazoneId>;
    fn zone_variant(&self) -> Option<ZoneVariant>;
}
Expand description

Representation of a formattable time zone.

Only the GmtOffset is required, since it is the final format fallback.

All data represented in TimeZoneInput should be locale-agnostic.

Required Methods§

source

fn gmt_offset(&self) -> Option<GmtOffset>

The GMT offset in Nanoseconds.

source

fn time_zone_id(&self) -> Option<TimeZoneBcp47Id>

The IANA time-zone identifier.

source

fn metazone_id(&self) -> Option<MetazoneId>

The metazone identifier.

source

fn zone_variant(&self) -> Option<ZoneVariant>

The time variant (e.g. “daylight”, “standard”)

Implementors§