rc

Macro rc 

Source
macro_rules! rc {
    ($val:expr) => { ... };
}
Expand description

Macro for creating an Rc<T> from a value

ยงExample

use hurry::rc;
let x = rc!(5);
assert_eq!(*x, 5);