diff options
| author | The8472 <git@infinite-source.de> | 2021-05-16 18:48:35 +0200 |
|---|---|---|
| committer | The8472 <git@infinite-source.de> | 2021-05-16 19:36:21 +0200 |
| commit | 39e492a2beda93355555138d3059d80b674c8b08 (patch) | |
| tree | 2bd423ee9068eb87bc49c56d16a7f5210da6fd37 /library/alloc/src/vec | |
| parent | 747a5d2a5d6693f5e9426524b0dab34eb1587377 (diff) | |
| download | rust-39e492a2beda93355555138d3059d80b674c8b08.tar.gz rust-39e492a2beda93355555138d3059d80b674c8b08.zip | |
mark internal inplace_iteration traits as hidden
Diffstat (limited to 'library/alloc/src/vec')
| -rw-r--r-- | library/alloc/src/vec/into_iter.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/library/alloc/src/vec/into_iter.rs b/library/alloc/src/vec/into_iter.rs index 2e68161d260..8da4d995ba5 100644 --- a/library/alloc/src/vec/into_iter.rs +++ b/library/alloc/src/vec/into_iter.rs @@ -264,9 +264,11 @@ unsafe impl<#[may_dangle] T, A: Allocator> Drop for IntoIter<T, A> { } #[unstable(issue = "none", feature = "inplace_iteration")] +#[doc(hidden)] unsafe impl<T, A: Allocator> InPlaceIterable for IntoIter<T, A> {} #[unstable(issue = "none", feature = "inplace_iteration")] +#[doc(hidden)] unsafe impl<T, A: Allocator> SourceIter for IntoIter<T, A> { type Source = Self; |
