[][src]Enum parse_zoneinfo::structure::Child

pub enum Child<'table> {
    Submodule(&'table str),
    TimeZone(&'table str),
}

A child module that needs to be created.

The order here is important for PartialOrd: submodules need to be created before actual time zones, as directories need to be created before the files in them can be written.

Variants

Submodule(&'table str)

A module containing only submodules, no time zones.

TimeZone(&'table str)

A module containing only the details of a time zone.

Trait Implementations

impl<'table> Clone for Child<'table>[src]

impl<'table> Copy for Child<'table>[src]

impl<'table> Debug for Child<'table>[src]

impl<'table> Eq for Child<'table>[src]

impl<'table> Ord for Child<'table>[src]

impl<'table> PartialEq<Child<'table>> for Child<'table>[src]

impl<'table> PartialOrd<Child<'table>> for Child<'table>[src]

impl<'table> StructuralEq for Child<'table>[src]

impl<'table> StructuralPartialEq for Child<'table>[src]

Auto Trait Implementations

impl<'table> RefUnwindSafe for Child<'table>

impl<'table> Send for Child<'table>

impl<'table> Sync for Child<'table>

impl<'table> Unpin for Child<'table>

impl<'table> UnwindSafe for Child<'table>

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.