]> git.proxmox.com Git - rustc.git/blobdiff - library/alloc/src/collections/binary_heap.rs
New upstream version 1.54.0+dfsg1
[rustc.git] / library / alloc / src / collections / binary_heap.rs
index a201af0103070afa544b539b16b50ceb5fd90353..544e18d1ff3911cea4f2d4295598d1b5422c6d37 100644 (file)
@@ -1299,6 +1299,7 @@ impl<T> ExactSizeIterator for IntoIter<T> {
 impl<T> FusedIterator for IntoIter<T> {}
 
 #[unstable(issue = "none", feature = "inplace_iteration")]
+#[doc(hidden)]
 unsafe impl<T> SourceIter for IntoIter<T> {
     type Source = IntoIter<T>;
 
@@ -1309,6 +1310,7 @@ unsafe impl<T> SourceIter for IntoIter<T> {
 }
 
 #[unstable(issue = "none", feature = "inplace_iteration")]
+#[doc(hidden)]
 unsafe impl<I> InPlaceIterable for IntoIter<I> {}
 
 impl<I> AsIntoIter for IntoIter<I> {