pub unsafe trait IntoRawPtr {
type Pointee: 'static;
// Required method
unsafe fn to_ptr(&self) -> RawPtr<Self::Pointee>;
}pub unsafe trait IntoRawPtr {
type Pointee: 'static;
// Required method
unsafe fn to_ptr(&self) -> RawPtr<Self::Pointee>;
}