Enum parse_zoneinfo::table::Saving [] [src]

pub enum Saving {
    NoSaving,
    OneOff(i64),
    Multiple(String),
}

The amount of daylight saving time (DST) to apply to this timespan. This is a special type for a certain field in a zone line, which can hold different types of value.

This is the owned version of the Saving type in the line module.

Variants

Just stick to the base offset.

This amount of time should be saved while this timespan is in effect. (This is the equivalent to there being a single one-off rule with the given amount of time to save).

All rules with the given name should apply while this timespan is in effect.

Trait Implementations

impl PartialEq for Saving
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Debug for Saving
[src]

Formats the value using the given formatter.