3个不稳定版本
0.3.0 | 2023年2月1日 |
---|---|
0.2.0 |
|
0.1.1 | 2022年11月9日 |
0.1.0 | 2022年10月24日 |
在Rust模式中排名2923
每月下载量21,628次
6KB
83 行
hex-display
对&[u8]
包装器的Display实现,提供hexdump功能(参见[Hex
]和HexDisplayExt
)。此crate也可以在no_std
环境中运行。
如果存在std
,它还可以将内容转换为字符串形式的hexdump。
示例用法
use hex_display::HexDisplayExt;
assert_eq!(
format!("{}", [0x01, 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, 0xef].hex()),
"0123456789abcdef"
);
#[cfg(feature = "std")]
assert_eq!(
[0x01, 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, 0xef].hex_string(),
"0123456789abcdef"
);