binspect 0.1.1

Utilities to inspect the data layout of objects.
Documentation
1
2
3
4
5
6
7
use binspect::binspect;

fn main() {
    let s = "ABC";
    binspect!(s);
    binspect!(*s);
}