pub const fn from_ref<T: ?Sized>(r: &T) -> *const T
ptr_from_ref
将引用转换为裸指针。
这等同于 r as *const T,但更安全一些,因为它永远不会默默地更改类型或可变性,尤其是在重构代码的情况下。
r as *const T