This crate provides macro shorthand for displaying size of given value in bytes. This can be handy when you want to write less code for debugging to determine how much space is allocated for a variable.
Example: ```
extern crate memprintln; use memprintln::mem;
fn foo() { let value: i32 = 10; mem!(value); // println!("{}", mem::sizeofval(&value)); } ```