generated from PlexSheep/baserepo
All checks were successful
Cargo Check, Format, Fix and Test / cargo CI (push) Successful in 2m20s
24 lines
553 B
Rust
24 lines
553 B
Rust
//! # 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<T>(mut data: BufReader<T>) -> 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(())
|
|
}
|