We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Add a lint to suggest converting all instances of:
0 as *const T; 0 as *mut T;
To:
std::ptr::null(); std::ptr::null_mut();
See rust-lang/rust#34456