#unsafe #hex-dump #no-std

no-std memdump

用 Rust 编写的便捷的 unsafe no_std 内存转储实用库

2 个版本

0.1.3 2023 年 4 月 13 日
0.1.2 2023 年 4 月 12 日
0.1.1 2023 年 4 月 12 日
0.1.0 2023 年 4 月 12 日

#22#hex-dump

MIT 许可协议

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));
    }
}

无运行时依赖