memdump 0.1.3

Handy unsafe no_std memory dumper utility library written in Rust.
Documentation
1
2
3
4
5
6
7
const FOO: &str = "Hello, world!\n What is your name?";

fn main() {
    unsafe {
        memdump::memdump(FOO.as_ptr(), FOO.len(), |s| println!("{}", s));
    }
}