summaryrefslogtreecommitdiffstats
path: root/src/nonprintable_notation.rs
blob: ff09aca68614a39ef4f238066a2daa916cb4abb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/// How to print non-printable characters with
/// [crate::config::Config::show_nonprintable]
#[derive(Debug, Default, Clone, Copy, PartialEq, Eq)]
#[non_exhaustive]
pub enum NonprintableNotation {
    /// Use caret notation (^G, ^J, ^@, ..)
    Caret,

    /// Use unicode notation (␇, ␊, ␀, ..)
    #[default]
    Unicode,
}