pub const fn null_mut<T>() -> *mut Twhere T: Thin + ?Sized,
Creates a null mutable raw pointer.
use std::ptr; let p: *mut i32 = ptr::null_mut(); assert!(p.is_null());