[][src]Struct tzparse::Tzinfo

pub struct Tzinfo {
    pub timezone: String,
    pub utc_datetime: DateTime<Utc>,
    pub datetime: DateTime<FixedOffset>,
    pub dst_from: Option<DateTime<Utc>>,
    pub dst_until: Option<DateTime<Utc>>,
    pub dst_period: bool,
    pub raw_offset: isize,
    pub dst_offset: isize,
    pub utc_offset: FixedOffset,
    pub abbreviation: String,
    pub week_number: i32,
}

Fields

timezone: String

Timezone name

utc_datetime: DateTime<Utc>

UTC time

datetime: DateTime<FixedOffset>

Local time

dst_from: Option<DateTime<Utc>>

Start of DST period

dst_until: Option<DateTime<Utc>>

End of DST period

dst_period: bool

Are we in DST period ?

raw_offset: isize

Normal offset to GMT, in seconds

dst_offset: isize

DST offset to GMT, in seconds

utc_offset: FixedOffset

current offset to GMT, in +/-HH:MM

abbreviation: String

Timezone abbreviation

week_number: i32

Week number

Trait Implementations

impl Debug for Tzinfo[src]

Auto Trait Implementations

impl RefUnwindSafe for Tzinfo

impl Send for Tzinfo

impl Sync for Tzinfo

impl Unpin for Tzinfo

impl UnwindSafe for Tzinfo

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.