icu_datetime::input

Trait TimeZoneInput

Source
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”)

Implementations on Foreign Types§

Source§

impl TimeZoneInput for CustomTimeZone

Implementors§