Skip to main content

stringencrypt/
new_line.rs

1/// Line ending style for generated source (`new_lines` request field).
2pub struct NewLine;
3
4impl NewLine {
5    pub const LF: &'static str = "lf";
6    pub const CRLF: &'static str = "crlf";
7    pub const CR: &'static str = "cr";
8}