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