pub trait ArcInto<T> { // Required method fn arc_into(self: Arc<Self>) -> T; }
A trait for converting Arc<T> into Self.
Arc<T>
Self
Converts Arc<T> into Self.