formaty/src/formatter/printers.rs

5 lines
82 B
Rust

pub fn print_bytes_as_array(data: &[u8]) -> String {
format!("{:?}", data)
}