Skip to content

Commit 35be1ff

Browse files
committed
core: readd type annotation inside pin macro to avoid unsoundness
1 parent 712fd82 commit 35be1ff

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

library/core/src/pin.rs

+12-1
Original file line numberDiff line numberDiff line change
@@ -1237,5 +1237,16 @@ pub macro pin($value:expr $(,)?) {
12371237
//
12381238
// See https://doc.rust-lang.org/1.58.1/reference/destructors.html#temporary-lifetime-extension
12391239
// for more info.
1240-
Pin { pointer: &mut { $value } }
1240+
//
1241+
// # Avoiding coercion
1242+
//
1243+
// We need to explicitly constrain the pointer type to avoid (unsound) coercion. Otherwise, you
1244+
// could write code like
1245+
// ```rust
1246+
// let rc = Rc::new(PhantomPinned);
1247+
// let _pinned: Pin<&PhantomPinned> = pin!(rc.clone());
1248+
// let moved = Rc::into_inner(rc).unwrap();
1249+
// ```
1250+
// since the `&mut Rc` is coerced to a `&PhantomPinned`.
1251+
Pin::<&mut _> { pointer: &mut { $value } }
12411252
}

0 commit comments

Comments
 (0)