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
//! # JSON Text
//!
//! Examples:
//!
//! ```rust
//! # use typeables::json_text::*;
//! let x = JSONTextAsStructStr("{\"alpha\":\"bravo\"}");
//! ```

pub struct JSONTextAsStructStr(pub &'static str);
pub struct JSONTextAsStructString(pub String);

pub type JSONTextAsTypeStr = str;
pub type JSONTextAsTypeString = String;