We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7854e9e + 55bd214 commit 866233bCopy full SHA for 866233b
src/liballoc/boxed.rs
@@ -320,7 +320,7 @@ impl<T: ?Sized> Box<T> {
320
/// This conversion does not allocate on the heap and happens in place.
321
///
322
/// This is also available via [`From`].
323
- #[unstable(feature = "box_into_pin", issue = "0")]
+ #[unstable(feature = "box_into_pin", issue = "62370")]
324
pub fn into_pin(boxed: Box<T>) -> Pin<Box<T>> {
325
// It's not possible to move or replace the insides of a `Pin<Box<T>>`
326
// when `T: !Unpin`, so it's safe to pin it directly without any
0 commit comments