1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//! # Global Location Number
//!
//! See: <https://schema.org/globalLocationNumber>
//!
//! See: <https://en.wikipedia.org/wiki/Global_Location_Number>
//!
//! A Global Location Number (GLN) is a 13-digit number used to identify parties
//! and physical locations. A GLN is sometimes also referred to as International
//! Location Number (ILN).
//!
//! Example:
//! ```
//! # use ::typeables::global_location_number::*;
//! let x = GlobalLocationNumberAsStructStr("1234567890123");
//! ```

pub struct GlobalLocationNumberAsStructStr(pub &'static str);
pub struct GlobalLocationNumberAsStructString(pub String);

pub type GlobalLocationNumberAsTypeStr = str;
pub type GlobalLocationNumberAsTypeString = String;