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