We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee84ec1 commit 2411be5Copy full SHA for 2411be5
src/libcollections/vec.rs
@@ -1944,6 +1944,9 @@ impl<T> ExactSizeIterator for IntoIter<T> {}
1944
#[unstable(feature = "fused", issue = "35602")]
1945
impl<T> FusedIterator for IntoIter<T> {}
1946
1947
+#[unstable(feature = "trusted_len", issue = "0")]
1948
+unsafe impl<T> TrustedLen for IntoIter<T> {}
1949
+
1950
#[stable(feature = "vec_into_iter_clone", since = "1.8.0")]
1951
impl<T: Clone> Clone for IntoIter<T> {
1952
fn clone(&self) -> IntoIter<T> {
0 commit comments