[][src]Struct parse_zoneinfo::line::ZoneInfo

pub struct ZoneInfo<'a> {
    pub utc_offset: TimeSpec,
    pub saving: Saving<'a>,
    pub format: &'a str,
    pub time: Option<ChangeTime>,
}

Fields

utc_offset: TimeSpecsaving: Saving<'a>format: &'a strtime: Option<ChangeTime>

Trait Implementations

impl<'a> Clone for ZoneInfo<'a>[src]

impl<'a> Copy for ZoneInfo<'a>[src]

impl<'a> Debug for ZoneInfo<'a>[src]

impl<'line> From<ZoneInfo<'line>> for ZoneInfo[src]

impl<'a> PartialEq<ZoneInfo<'a>> for ZoneInfo<'a>[src]

impl<'a> StructuralPartialEq for ZoneInfo<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for ZoneInfo<'a>

impl<'a> Send for ZoneInfo<'a>

impl<'a> Sync for ZoneInfo<'a>

impl<'a> Unpin for ZoneInfo<'a>

impl<'a> UnwindSafe for ZoneInfo<'a>

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.