ranty 1.0.0

The Ranty procedural templating language
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod case;
mod num;
mod ws;

pub use self::case::*;
pub use self::num::*;
pub use self::ws::*;

#[derive(Debug, Clone, Default)]
pub struct OutputFormat {
    pub whitespace_format: WhitespaceNormalizationMode,
    pub number_format: NumberFormat,
    pub casing_format: CasingFormat,
}