idml 0.5.3

Parser for Indented Delimiter Markup Language
Documentation
1
2
3
4
5
6
7
8
9
10
//! # Common definitions

/// Whitespace character.
pub const WS: char = ' ';

/// Horizontal tabulator character.
pub const TAB: char = '\t';

/// Empty character (zero).
pub const NULL: char = 0 as char;