Other items inbinspect
macro_rules! binspect { ($v: expr) => { ... }; ($v: expr, $len: expr) => { ... }; }
Prints the memory address and the hex representation of an object to stdout.
let s = "ABC"; binspect!(s); unsafe { binspect!(*s, s.len()) };
A correct byte length must be specified if the value is !Sized.
!Sized