Struct tz::LocalTimeType [] [src]

pub struct LocalTimeType {
    pub name: String,
    pub offset: i32,
    pub is_dst: bool,
    pub transition_type: TransitionType,
}

A description of the local time in a particular timezone, during the period in which the clocks do not change.

Fields

The time zone abbreviation - such as "GMT" or "UTC".

Number of seconds to be added to Universal Time.

Whether to set DST.

The current 'type' of time.

Trait Implementations

impl Debug for LocalTimeType
[src]

Formats the value using the given formatter.

impl PartialEq for LocalTimeType
[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 LocalTimeType
[src]

impl Clone for LocalTimeType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more