typeables 2.3.0

Typeables: Rust crate of type aliases. By SixArm.com.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! ## Time zone as abbreviation text
//!
//! Examples:
//! ```
//! # use typeables::time_zone::*;
//! let x = TimeZoneAsAbbreviationAsStructStr("ET"); // U.S. Eastern Time
//! let x = TimeZoneAsAbbreviationAsStructStr("BST"); // British Summer Time
//! ```

pub struct TimeZoneAsAbbreviationAsStructStr(pub &'static str);
pub struct TimeZoneAsAbbreviationAsStructString(pub String);

pub type TimeZoneAsAbbreviationAsTypeStr = str;
pub type TimeZoneAsAbbreviationAsTypeString = String;