macro_rules! boxx { ($val:expr) => { ... }; }
Macro for creating a Box<T> from a value
Box<T>
use hurry::boxx; let x = boxx!(5); assert_eq!(*x, 5);