//! # Dump data //! //! This crate is part of [`pt`](../libpt/index.html), but can also be used as a standalone //! module. //! //! This crate is currently empty. use std::{fmt::Debug, io::{BufReader, BufRead, prelude::*, Bytes}}; use anyhow::Result; pub fn dump(mut data: BufReader) -> Result<()> where T: Read { for (i, b) in data.bytes().enumerate() { if i % 8 == 0 { print!("{:08X}\t", i); } print!("{:02X?} ", b.unwrap()); if i % 8 == 7 { println!(); } } Ok(()) }