1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
use std::fmt;
pub struct HexU8(pub u8);
impl fmt::Debug for HexU8 {
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
write!(fmt, "0x{:02x}", self.0)
}
}
pub struct HexU16(pub u16);
impl fmt::Debug for HexU16 {
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
write!(fmt, "0x{:04x}", self.0)
}
}
pub struct HexSlice<'a>(pub &'a [u8]);
impl<'a> fmt::Debug for HexSlice<'a> {
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
let s: Vec<_> = self.0.iter().map(|&i| format!("{:02x}", i)).collect();
write!(fmt, "[{}]", s.join(" "))
}
}
#[cfg(test)]
mod tests {
use crate::debug;
#[test]
fn debug_print_hexu8() {
assert_eq!(format!("{:?}", debug::HexU8(18)), "0x12");
}
#[test]
fn debug_print_hexu16() {
assert_eq!(format!("{:?}", debug::HexU16(32769)), "0x8001");
}
#[test]
fn debug_print_hexslice() {
assert_eq!(
format!("{:?}", debug::HexSlice(&[15, 16, 17, 18, 19, 20])),
"[0f 10 11 12 13 14]"
);
}
}