[][src]Struct parse_zoneinfo::structure::TableStructureEntry

pub struct TableStructureEntry<'table> {
    pub name: &'table str,
    pub children: Vec<Child<'table>>,
}

An entry returned from a TableStructure iterator.

Fields

name: &'table str

This entry’s name, which can still include slashes.

children: Vec<Child<'table>>

A vector of sorted child names, which should have no slashes in.

Trait Implementations

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

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

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

Auto Trait Implementations

impl<'table> RefUnwindSafe for TableStructureEntry<'table>

impl<'table> Send for TableStructureEntry<'table>

impl<'table> Sync for TableStructureEntry<'table>

impl<'table> Unpin for TableStructureEntry<'table>

impl<'table> UnwindSafe for TableStructureEntry<'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, 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.