1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use core::fmt::{Binary, Debug, LowerHex};

pub struct HexNum<N: LowerHex>(pub N);

impl<N: LowerHex> Debug for HexNum<N> {
    fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
        LowerHex::fmt(&self.0, f)
    }
}

pub struct BinNum<N: Binary>(pub N);

impl<N: Binary> Debug for BinNum<N> {
    fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
        Binary::fmt(&self.0, f)
    }
}