We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f1c24a commit 81d0eceCopy full SHA for 81d0ece
src/liballoc/boxed.rs
@@ -899,6 +899,7 @@ impl<T> Generator for Box<T>
899
900
/// A pinned, heap allocated reference.
901
#[unstable(feature = "pin", issue = "0")]
902
+#[fundamental]
903
pub struct PinBox<T: ?Sized> {
904
inner: Box<T>,
905
}
src/libcore/mem.rs
@@ -1112,6 +1112,7 @@ pub unsafe fn unreachable() -> ! {
1112
/// safe to move a value out of a pinned reference unless the type of that
1113
/// value implements the `Unpin` trait.
1114
1115
1116
pub struct Pin<'a, T: ?Sized + 'a> {
1117
inner: &'a mut T,
1118
0 commit comments