Function emplacable::rc_new

source ·
pub fn rc_new<T>(value: T) -> Rc<T>
where T: ?Sized,
Expand description

Like Rc::new, but T can be ?Sized.

You will need #![feature(unsized_fn_params)] to call this.