A trait and derive macro to recursively find the size of an object (heap and stack).
```rust use deepsize::DeepSizeOf;
struct Test {
a: u32,
b: Box
fn main() { let object = Test { a: 15, b: Box::new(255), };
assert_eq!(object.deep_size_of(), 17);
} ```