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