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
//! # HTML Text
//!
//! Examples:
//!
//! ```rust
//! # use typeables::html_text::*;
//! let x = HTMLTextAsStructStr("This is <b>bold</b> text");
//! ```

pub struct HTMLTextAsStructStr(pub &'static str);
pub struct HTMLTextAsStructString(pub String);

pub type HTMLTextAsTypeStr = str;
pub type HTMLTextAsTypeString = String;