atom
pub trait IntoRawPtr<T> { unsafe fn into_raw(self) -> *mut T; }
Convert from into a raw pointer
unsafe fn into_raw(self) -> *mut T
impl<T> IntoRawPtr<T> for Box<T>
impl<T> IntoRawPtr<T> for Arc<T>