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.
1 parent 16bf626 commit b80a96cCopy full SHA for b80a96c
library/core/src/raw.rs
@@ -1,5 +1,9 @@
1
#![allow(missing_docs)]
2
#![unstable(feature = "raw", issue = "27751")]
3
+#![rustc_deprecated(
4
+ since = "1.53.0",
5
+ reason = "use pointer metadata APIs instead https://github.com/rust-lang/rust/issues/81513"
6
+)]
7
8
//! Contains struct definitions for the layout of compiler built-in types.
9
//!
library/std/src/lib.rs
@@ -456,6 +456,7 @@ pub use core::pin;
456
#[stable(feature = "rust1", since = "1.0.0")]
457
pub use core::ptr;
458
459
+#[allow(deprecated_in_future)]
460
pub use core::raw;
461
462
pub use core::result;
0 commit comments