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
//! # YAML Text
//!
//! Examples:
//!
//! ```rust
//! # use typeables::yaml_text::*;
//! let x = YAMLTextAsStructStr("\"alpha\":\"bravo\"");
//! ```

pub struct YAMLTextAsStructStr(pub &'static str);
pub struct YAMLTextAsStructString(pub String);

pub type YAMLTextAsTypeStr = str;
pub type YAMLTextAsTypeString = String;