Crates.io | memdump |
lib.rs | memdump |
version | 0.1.3 |
source | src |
created_at | 2023-04-12 06:24:51.326701 |
updated_at | 2023-04-13 13:52:15.748167 |
description | Handy unsafe no_std memory dumper utility library written in Rust. |
homepage | |
repository | https://github.com/perillamint/memdump-rs |
max_upload_size | |
id | 836615 |
size | 13,010 |
Handy unsafe memory dumper utility library written in Rust.
const FOO: &str = "Hello, world!\n What is your name?";
fn example_func() {
unsafe {
memdump(FOO.as_ptr(), FOO.len(), |s| println!("{}", s));
}
}