Function show_bytes

Source
pub fn show_bytes<I>(bytes: I) -> String
where I: IntoIterator, I::Item: Borrow<u8>,
Expand description

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).