Struct zoneinfo_compiled::parser::TZData[][src]

pub struct TZData {
    pub header: Header,
    pub transitions: Vec<TransitionData>,
    pub time_info: Vec<LocalTimeTypeData>,
    pub leap_seconds: Vec<LeapSecondData>,
    pub strings: Vec<u8>,
    pub standard_flags: Vec<u8>,
    pub gmt_flags: Vec<u8>,
}

The internal structure of a zoneinfo file.

Fields

header: Headertransitions: Vec<TransitionData>time_info: Vec<LocalTimeTypeData>leap_seconds: Vec<LeapSecondData>strings: Vec<u8>standard_flags: Vec<u8>gmt_flags: Vec<u8>

Trait Implementations

impl Clone for TZData[src]

impl Debug for TZData[src]

impl Eq for TZData[src]

impl PartialEq<TZData> for TZData[src]

impl StructuralEq for TZData[src]

impl StructuralPartialEq for TZData[src]

Auto Trait Implementations

impl RefUnwindSafe for TZData

impl Send for TZData

impl Sync for TZData

impl Unpin for TZData

impl UnwindSafe for TZData

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.