### What it does `&something as *const Something` would be converted to `ptr::from_ref(&something)` See the tracking issue: https://github.com/rust-lang/rust/issues/106116 Once those methods are stabilized, we should be able to re-open https://github.com/rust-lang/rust-clippy/pull/9802 and finally ban all `as` casts for pointers. ### Lint Name `as_ptr_cast` ### Category style, pedantic