[][src]Struct parse_zoneinfo::table::RuleInfo

pub struct RuleInfo {
    pub from_year: Year,
    pub to_year: Option<Year>,
    pub month: Month,
    pub day: DaySpec,
    pub time: i64,
    pub time_type: TimeType,
    pub time_to_add: i64,
    pub letters: Option<String>,
}

An owned rule definition line.

This mimics the Rule struct in the line module, only its uses owned Strings instead of string slices, and has had some pre-processing applied to it.

Fields

from_year: Year

The year that this rule starts applying.

to_year: Option<Year>

The year that this rule finishes applying, inclusive, or None if it applies up until the end of this timespan.

month: Month

The month it applies on.

day: DaySpec

The day it applies on.

time: i64

The exact time it applies on.

time_type: TimeType

The type of time that time is.

time_to_add: i64

The amount of time to save.

letters: Option<String>

Any extra letters that should be added to this time zone’s abbreviation, in place of %s.

Methods

impl RuleInfo[src]

pub fn applies_to_year(&self, year: i64) -> bool[src]

Returns whether this rule is in effect during the given year.

pub fn absolute_datetime(
    &self,
    year: i64,
    utc_offset: i64,
    dst_offset: i64
) -> i64
[src]

Trait Implementations

impl Debug for RuleInfo[src]

impl<'line> From<Rule<'line>> for RuleInfo[src]

impl PartialEq<RuleInfo> for RuleInfo[src]

impl StructuralPartialEq for RuleInfo[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.