Function emplacable::arc_new

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

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

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