display_bytes
Human-readable display of byte sequences.
Supports printing of both UTF-8 and ASCII-only sequences.
```rust extern crate display_bytes;
use displaybytes::{displaybytes, displaybytesstring};
fn main() { let bytes = b"Hello, world!\x89\x90\xAB\xCD"; println!("{:?}", bytes); println!("{}", displaybytes(bytes)); asserteq!(displaybytesstring(bytes), "Hello, world! {{ 89 90 AB CD }}"); } ```
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.