We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35cacbc commit 5a4845dCopy full SHA for 5a4845d
src/libcore/marker.rs
@@ -655,6 +655,12 @@ impl<'a, T: ?Sized + 'a> Unpin for &'a T {}
655
#[stable(feature = "pin", since = "1.33.0")]
656
impl<'a, T: ?Sized + 'a> Unpin for &'a mut T {}
657
658
+#[stable(feature = "pin_raw", since = "1.38.0")]
659
+impl<T: ?Sized> Unpin for *const T {}
660
+
661
662
+impl<T: ?Sized> Unpin for *mut T {}
663
664
/// Implementations of `Copy` for primitive types.
665
///
666
/// Implementations that cannot be described in Rust
0 commit comments