usecrate::RantValue;#[derive(Debug, Clone)]pubenumWhitespaceNormalizationMode{/// Normalizes all whitespace tokens to a single ASCII space character (0x20).
Default,/// Strips all (non-literal) whitespace.
IgnoreAll,/// Prints all non-breaking whitespace verbatim.
Verbatim,/// Normalizes all whitespace to a custom value.
Custom(RantValue)}implDefault forWhitespaceNormalizationMode{fndefault()->Self{Self::Default
}}