@@ -514,14 +514,14 @@ unsafe impl<I> TrustedLen for Rev<I>
514514///
515515/// [`copied`]: trait.Iterator.html#method.copied
516516/// [`Iterator`]: trait.Iterator.html
517- #[ unstable( feature = "iter_copied" , issue = "0 " ) ]
517+ #[ unstable( feature = "iter_copied" , issue = "57127 " ) ]
518518#[ must_use = "iterator adaptors are lazy and do nothing unless consumed" ]
519519#[ derive( Clone , Debug ) ]
520520pub struct Copied < I > {
521521 it : I ,
522522}
523523
524- #[ unstable( feature = "iter_copied" , issue = "0 " ) ]
524+ #[ unstable( feature = "iter_copied" , issue = "57127 " ) ]
525525impl < ' a , I , T : ' a > Iterator for Copied < I >
526526 where I : Iterator < Item =& ' a T > , T : Copy
527527{
@@ -548,7 +548,7 @@ impl<'a, I, T: 'a> Iterator for Copied<I>
548548 }
549549}
550550
551- #[ unstable( feature = "iter_copied" , issue = "0 " ) ]
551+ #[ unstable( feature = "iter_copied" , issue = "57127 " ) ]
552552impl < ' a , I , T : ' a > DoubleEndedIterator for Copied < I >
553553 where I : DoubleEndedIterator < Item =& ' a T > , T : Copy
554554{
@@ -569,7 +569,7 @@ impl<'a, I, T: 'a> DoubleEndedIterator for Copied<I>
569569 }
570570}
571571
572- #[ unstable( feature = "iter_copied" , issue = "0 " ) ]
572+ #[ unstable( feature = "iter_copied" , issue = "57127 " ) ]
573573impl < ' a , I , T : ' a > ExactSizeIterator for Copied < I >
574574 where I : ExactSizeIterator < Item =& ' a T > , T : Copy
575575{
@@ -582,7 +582,7 @@ impl<'a, I, T: 'a> ExactSizeIterator for Copied<I>
582582 }
583583}
584584
585- #[ unstable( feature = "iter_copied" , issue = "0 " ) ]
585+ #[ unstable( feature = "iter_copied" , issue = "57127 " ) ]
586586impl < ' a , I , T : ' a > FusedIterator for Copied < I >
587587 where I : FusedIterator < Item =& ' a T > , T : Copy
588588{ }
@@ -601,7 +601,7 @@ unsafe impl<'a, I, T: 'a> TrustedRandomAccess for Copied<I>
601601 }
602602}
603603
604- #[ unstable( feature = "iter_copied" , issue = "0 " ) ]
604+ #[ unstable( feature = "iter_copied" , issue = "57127 " ) ]
605605unsafe impl < ' a , I , T : ' a > TrustedLen for Copied < I >
606606 where I : TrustedLen < Item =& ' a T > ,
607607 T : Copy
0 commit comments