(bytes: &[u8; N])
| 12 | } |
| 13 | |
| 14 | pub fn encode<const N: usize>(bytes: &[u8; N]) -> HexString<N> { |
| 15 | let s = bytes.map(HexByte::from_byte); |
| 16 | HexString { s } |
| 17 | } |
| 18 | |
| 19 | impl<const N: usize> HexString<N> { |
| 20 | #[inline(always)] |
no test coverage detected
searching dependent graphs…