1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! # XML Text
//!
//! Examples:
//!
//! ```rust
//! # use typeables::xml_text::*;
//! let x = XMLTextAsStructStr("<alpha>bravo</alpha>");
//! ```

pub struct XMLTextAsStructStr(pub &'static str);
pub struct XMLTextAsStructString(pub String);

pub type XMLTextAsTypeStr = str;
pub type XMLTextAsTypeString = String;