pub fn show_bytes<I>(bytes: I) -> Stringwhere I: IntoIterator, I::Item: Borrow<u8>,
A helper function to show bytes without explicitly creating a Printer struct.
show_bytes(bytes) is equivalent to Printer::new(QuoteStyle::Double).into_string(bytes).
show_bytes(bytes)
Printer::new(QuoteStyle::Double).into_string(bytes)