Function emplacable::arc_pin

source ·
pub fn arc_pin<T>(x: T) -> Pin<Arc<T>>where
    T: ?Sized,
Expand description

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

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