1 2 3 4 5 6 7 8 9 10 11 12
use super::ascii::*; use ascii::AsciiChar; #[test] fn display() { for i in 0_u32..32_u32 { let ac = AsciiChar::from_ascii(i).unwrap(); let fmt = AsciiControlCodeFormatter::from(ac); println!("{i}:{fmt}"); } }