1pub mod single; 2 3pub const LINE_SEPARATOR_DEFAULT: u8 = b'\n'; 4 5pub const FIELD_SEPARATOR_DEFAULT: u8 = b'\t'; 6pub const VALUE_SEPARATOR_DEFAULT: u8 = b':'; 7 8pub const OUTPUT_EMPTY_DEFAULT: bool = false;