tzif/data/mod.rs
1// This file is part of ICU4X. For terms of use, please see the file
2// called LICENSE at the top level of the ICU4X source tree
3// (online at: https://github.com/unicode-org/icu4x/blob/main/LICENSE ).
4
5/// Structs for holding data encoded by POSIX time-zone strings, as specified by
6/// <https://www.gnu.org/software/libc/manual/html_node/TZ-Variable.html>
7pub mod posix;
8
9/// Simple structs for keeping track of seconds, hours, and minutes with the type system.
10pub mod time;
11
12/// Structs for holding data parsed from `TZif` binary files, as specified by
13/// <https://datatracker.ietf.org/doc/html/rfc8536>
14pub mod tzif;