arc_pin

Function 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.