Struct tz::internals::LocalTimeTypeData [] [src]

pub struct LocalTimeTypeData {
    pub offset: i32,
    pub is_dst: u8,
    pub name_offset: u8,
}

Fields

Number of seconds to be added to Universal Time. (Equivalent to tt_gmtoff in C)

Whether to set DST. (Equivalent to tt_isdst in C)

Position in the array of time zone abbreviation characters, elsewhere in the file. (Equivalent to tt_abbrind in C)

Trait Implementations

impl Debug for LocalTimeTypeData
[src]

Formats the value using the given formatter.

impl PartialEq for LocalTimeTypeData
[src]

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

This method tests for !=.

impl Eq for LocalTimeTypeData
[src]

impl Clone for LocalTimeTypeData
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more