@@ -514,14 +514,14 @@ unsafe impl<I> TrustedLen for Rev<I>
514
514
///
515
515
/// [`copied`]: trait.Iterator.html#method.copied
516
516
/// [`Iterator`]: trait.Iterator.html
517
- #[ unstable( feature = "iter_copied" , issue = "0 " ) ]
517
+ #[ unstable( feature = "iter_copied" , issue = "57127 " ) ]
518
518
#[ must_use = "iterator adaptors are lazy and do nothing unless consumed" ]
519
519
#[ derive( Clone , Debug ) ]
520
520
pub struct Copied < I > {
521
521
it : I ,
522
522
}
523
523
524
- #[ unstable( feature = "iter_copied" , issue = "0 " ) ]
524
+ #[ unstable( feature = "iter_copied" , issue = "57127 " ) ]
525
525
impl < ' a , I , T : ' a > Iterator for Copied < I >
526
526
where I : Iterator < Item =& ' a T > , T : Copy
527
527
{
@@ -548,7 +548,7 @@ impl<'a, I, T: 'a> Iterator for Copied<I>
548
548
}
549
549
}
550
550
551
- #[ unstable( feature = "iter_copied" , issue = "0 " ) ]
551
+ #[ unstable( feature = "iter_copied" , issue = "57127 " ) ]
552
552
impl < ' a , I , T : ' a > DoubleEndedIterator for Copied < I >
553
553
where I : DoubleEndedIterator < Item =& ' a T > , T : Copy
554
554
{
@@ -569,7 +569,7 @@ impl<'a, I, T: 'a> DoubleEndedIterator for Copied<I>
569
569
}
570
570
}
571
571
572
- #[ unstable( feature = "iter_copied" , issue = "0 " ) ]
572
+ #[ unstable( feature = "iter_copied" , issue = "57127 " ) ]
573
573
impl < ' a , I , T : ' a > ExactSizeIterator for Copied < I >
574
574
where I : ExactSizeIterator < Item =& ' a T > , T : Copy
575
575
{
@@ -582,7 +582,7 @@ impl<'a, I, T: 'a> ExactSizeIterator for Copied<I>
582
582
}
583
583
}
584
584
585
- #[ unstable( feature = "iter_copied" , issue = "0 " ) ]
585
+ #[ unstable( feature = "iter_copied" , issue = "57127 " ) ]
586
586
impl < ' a , I , T : ' a > FusedIterator for Copied < I >
587
587
where I : FusedIterator < Item =& ' a T > , T : Copy
588
588
{ }
@@ -601,7 +601,7 @@ unsafe impl<'a, I, T: 'a> TrustedRandomAccess for Copied<I>
601
601
}
602
602
}
603
603
604
- #[ unstable( feature = "iter_copied" , issue = "0 " ) ]
604
+ #[ unstable( feature = "iter_copied" , issue = "57127 " ) ]
605
605
unsafe impl < ' a , I , T : ' a > TrustedLen for Copied < I >
606
606
where I : TrustedLen < Item =& ' a T > ,
607
607
T : Copy
0 commit comments