pub const fn from_ref<T: ?Sized>(r: &T) -> *const T
Expand description
Convert a reference to a raw pointer.
This is equivalent to r as *const T
, but is a bit safer since it will never silently change
type or mutability, in particular if the code is refactored.