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

pub struct MarkdownTextAsStructStr(pub &'static str);
pub struct MarkdownTextAsStructString(pub String);

pub type MarkdownTextAsTypeStr = str;
pub type MarkdownTextAsTypeString = String;