typeables/
what_free_words_code.rs

1//! What Free Words Code
2//!
3//! WhatFreeWords.com code for geolocation.
4//!
5//! See: <https://whatfreewords.org/>
6//!
7//! Example:
8//!
9//!   * "joyful.nail.harmonica" is geolocation 37.234328,-115.806657.
10//!
11//! ```
12//! # use typeables::what_free_words_code::*;
13//! let x = WhatFreeWordsCodeAsStructStr("joyful.nail.harmonica");
14//! ```
15
16pub struct WhatFreeWordsCodeAsStructStr(pub &'static str);
17pub struct WhatFreeWordsCodeAsStructString(pub String);
18
19pub type WhatFreeWordsCodeAsTypeStr = str;
20pub type WhatFreeWordsCodeAsTypeString = String;