2 个版本
0.1.3 | 2023 年 4 月 13 日 |
---|---|
0.1.2 | 2023 年 4 月 12 日 |
0.1.1 |
|
0.1.0 |
|
#22 在 #hex-dump
6KB
64 行
memdump-rs
用 Rust 编写的便捷的 unsafe 内存转储实用库。
使用示例
const FOO: &str = "Hello, world!\n What is your name?";
fn example_func() {
unsafe {
memdump(FOO.as_ptr(), FOO.len(), |s| println!("{}", s));
}
}