The `as_ref` method has a "Null-unchecked version" section for both [`<*const T>::as_ref`](https://doc.rust-lang.org/std/primitive.pointer.html#method.as_ref) and [`<*mut T>::as_ref`](https://doc.rust-lang.org/std/primitive.pointer.html#method.as_ref-1). Is there a reason why there is no similar "Null-unchecked version" section in the documentation for [`<*mut T>::as_mut`](https://doc.rust-lang.org/std/primitive.pointer.html#method.as_mut)?
The
as_refmethod has a "Null-unchecked version" section for both<*const T>::as_refand<*mut T>::as_ref.Is there a reason why there is no similar "Null-unchecked version" section in the documentation for
<*mut T>::as_mut?