@@ -409,7 +409,7 @@ impl<R: Try> LoopState<R::Ok, R> {
409
409
///
410
410
/// [`rev`]: trait.Iterator.html#method.rev
411
411
/// [`Iterator`]: trait.Iterator.html
412
- #[ derive( Clone , Debug ) ]
412
+ #[ derive( Copy , Clone , Debug ) ]
413
413
#[ must_use = "iterator adaptors are lazy and do nothing unless consumed" ]
414
414
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
415
415
pub struct Rev < T > {
@@ -506,7 +506,7 @@ unsafe impl<I> TrustedLen for Rev<I>
506
506
/// [`Iterator`]: trait.Iterator.html
507
507
#[ stable( feature = "iter_cloned" , since = "1.1.0" ) ]
508
508
#[ must_use = "iterator adaptors are lazy and do nothing unless consumed" ]
509
- #[ derive( Clone , Debug ) ]
509
+ #[ derive( Copy , Clone , Debug ) ]
510
510
pub struct Cloned < I > {
511
511
it : I ,
512
512
}
@@ -614,7 +614,7 @@ unsafe impl<'a, I, T: 'a> TrustedLen for Cloned<I>
614
614
///
615
615
/// [`cycle`]: trait.Iterator.html#method.cycle
616
616
/// [`Iterator`]: trait.Iterator.html
617
- #[ derive( Clone , Debug ) ]
617
+ #[ derive( Copy , Clone , Debug ) ]
618
618
#[ must_use = "iterator adaptors are lazy and do nothing unless consumed" ]
619
619
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
620
620
pub struct Cycle < I > {
@@ -659,7 +659,7 @@ impl<I> FusedIterator for Cycle<I> where I: Clone + Iterator {}
659
659
#[ unstable( feature = "iterator_step_by" ,
660
660
reason = "unstable replacement of Range::step_by" ,
661
661
issue = "27741" ) ]
662
- #[ derive( Clone , Debug ) ]
662
+ #[ derive( Copy , Clone , Debug ) ]
663
663
pub struct StepBy < I > {
664
664
iter : I ,
665
665
step : usize ,
@@ -709,7 +709,7 @@ impl<I> ExactSizeIterator for StepBy<I> where I: ExactSizeIterator {}
709
709
///
710
710
/// [`chain`]: trait.Iterator.html#method.chain
711
711
/// [`Iterator`]: trait.Iterator.html
712
- #[ derive( Clone , Debug ) ]
712
+ #[ derive( Copy , Clone , Debug ) ]
713
713
#[ must_use = "iterator adaptors are lazy and do nothing unless consumed" ]
714
714
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
715
715
pub struct Chain < A , B > {
@@ -731,7 +731,7 @@ pub struct Chain<A, B> {
731
731
//
732
732
// The fourth state (neither iterator is remaining) only occurs after Chain has
733
733
// returned None once, so we don't need to store this state.
734
- #[ derive( Clone , Debug ) ]
734
+ #[ derive( Copy , Clone , Debug ) ]
735
735
enum ChainState {
736
736
// both front and back iterator are remaining
737
737
Both ,
@@ -960,7 +960,7 @@ unsafe impl<A, B> TrustedLen for Chain<A, B>
960
960
///
961
961
/// [`zip`]: trait.Iterator.html#method.zip
962
962
/// [`Iterator`]: trait.Iterator.html
963
- #[ derive( Clone , Debug ) ]
963
+ #[ derive( Copy , Clone , Debug ) ]
964
964
#[ must_use = "iterator adaptors are lazy and do nothing unless consumed" ]
965
965
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
966
966
pub struct Zip < A , B > {
@@ -1227,7 +1227,7 @@ unsafe impl<A, B> TrustedLen for Zip<A, B>
1227
1227
/// ```
1228
1228
#[ must_use = "iterator adaptors are lazy and do nothing unless consumed" ]
1229
1229
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1230
- #[ derive( Clone ) ]
1230
+ #[ derive( Copy , Clone ) ]
1231
1231
pub struct Map < I , F > {
1232
1232
iter : I ,
1233
1233
f : F ,
@@ -1338,7 +1338,7 @@ unsafe impl<B, I, F> TrustedRandomAccess for Map<I, F>
1338
1338
/// [`Iterator`]: trait.Iterator.html
1339
1339
#[ must_use = "iterator adaptors are lazy and do nothing unless consumed" ]
1340
1340
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1341
- #[ derive( Clone ) ]
1341
+ #[ derive( Copy , Clone ) ]
1342
1342
pub struct Filter < I , P > {
1343
1343
iter : I ,
1344
1344
predicate : P ,
@@ -1470,7 +1470,7 @@ impl<I: FusedIterator, P> FusedIterator for Filter<I, P>
1470
1470
/// [`Iterator`]: trait.Iterator.html
1471
1471
#[ must_use = "iterator adaptors are lazy and do nothing unless consumed" ]
1472
1472
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1473
- #[ derive( Clone ) ]
1473
+ #[ derive( Copy , Clone ) ]
1474
1474
pub struct FilterMap < I , F > {
1475
1475
iter : I ,
1476
1476
f : F ,
@@ -1739,7 +1739,7 @@ unsafe impl<I> TrustedLen for Enumerate<I>
1739
1739
///
1740
1740
/// [`peekable`]: trait.Iterator.html#method.peekable
1741
1741
/// [`Iterator`]: trait.Iterator.html
1742
- #[ derive( Clone , Debug ) ]
1742
+ #[ derive( Debug ) ]
1743
1743
#[ must_use = "iterator adaptors are lazy and do nothing unless consumed" ]
1744
1744
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1745
1745
pub struct Peekable < I : Iterator > {
@@ -1748,6 +1748,27 @@ pub struct Peekable<I: Iterator> {
1748
1748
peeked : Option < Option < I :: Item > > ,
1749
1749
}
1750
1750
1751
+ #[ stable( feature = "rust1" , since = "1.25.0" ) ]
1752
+ impl < I > Copy for Peekable < I >
1753
+ where
1754
+ I : Iterator + Copy ,
1755
+ I :: Item : Copy ,
1756
+ { }
1757
+
1758
+ #[ stable( feature = "rust1" , since = "1.25.0" ) ]
1759
+ impl < I > Clone for Peekable < I >
1760
+ where
1761
+ I : Iterator + Clone ,
1762
+ I :: Item : Clone ,
1763
+ {
1764
+ fn clone ( & self ) -> Self {
1765
+ Peekable {
1766
+ iter : self . iter . clone ( ) ,
1767
+ peeked : self . peeked . clone ( ) ,
1768
+ }
1769
+ }
1770
+ }
1771
+
1751
1772
// Peekable must remember if a None has been seen in the `.peek()` method.
1752
1773
// It ensures that `.peek(); .peek();` or `.peek(); .next();` only advances the
1753
1774
// underlying iterator at most once. This does not by itself make the iterator
@@ -1906,7 +1927,7 @@ impl<I: Iterator> Peekable<I> {
1906
1927
/// [`Iterator`]: trait.Iterator.html
1907
1928
#[ must_use = "iterator adaptors are lazy and do nothing unless consumed" ]
1908
1929
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1909
- #[ derive( Clone ) ]
1930
+ #[ derive( Copy , Clone ) ]
1910
1931
pub struct SkipWhile < I , P > {
1911
1932
iter : I ,
1912
1933
flag : bool ,
@@ -1989,7 +2010,7 @@ impl<I, P> FusedIterator for SkipWhile<I, P>
1989
2010
/// [`Iterator`]: trait.Iterator.html
1990
2011
#[ must_use = "iterator adaptors are lazy and do nothing unless consumed" ]
1991
2012
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1992
- #[ derive( Clone ) ]
2013
+ #[ derive( Copy , Clone ) ]
1993
2014
pub struct TakeWhile < I , P > {
1994
2015
iter : I ,
1995
2016
flag : bool ,
@@ -2066,7 +2087,7 @@ impl<I, P> FusedIterator for TakeWhile<I, P>
2066
2087
///
2067
2088
/// [`skip`]: trait.Iterator.html#method.skip
2068
2089
/// [`Iterator`]: trait.Iterator.html
2069
- #[ derive( Clone , Debug ) ]
2090
+ #[ derive( Copy , Clone , Debug ) ]
2070
2091
#[ must_use = "iterator adaptors are lazy and do nothing unless consumed" ]
2071
2092
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
2072
2093
pub struct Skip < I > {
@@ -2204,7 +2225,7 @@ impl<I> FusedIterator for Skip<I> where I: FusedIterator {}
2204
2225
///
2205
2226
/// [`take`]: trait.Iterator.html#method.take
2206
2227
/// [`Iterator`]: trait.Iterator.html
2207
- #[ derive( Clone , Debug ) ]
2228
+ #[ derive( Copy , Clone , Debug ) ]
2208
2229
#[ must_use = "iterator adaptors are lazy and do nothing unless consumed" ]
2209
2230
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
2210
2231
pub struct Take < I > {
@@ -2287,7 +2308,7 @@ impl<I> FusedIterator for Take<I> where I: FusedIterator {}
2287
2308
/// [`Iterator`]: trait.Iterator.html
2288
2309
#[ must_use = "iterator adaptors are lazy and do nothing unless consumed" ]
2289
2310
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
2290
- #[ derive( Clone ) ]
2311
+ #[ derive( Copy , Clone ) ]
2291
2312
pub struct Scan < I , St , F > {
2292
2313
iter : I ,
2293
2314
f : F ,
@@ -2347,14 +2368,40 @@ impl<B, I, St, F> Iterator for Scan<I, St, F> where
2347
2368
/// [`Iterator`]: trait.Iterator.html
2348
2369
#[ must_use = "iterator adaptors are lazy and do nothing unless consumed" ]
2349
2370
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
2350
- #[ derive( Clone ) ]
2351
2371
pub struct FlatMap < I , U : IntoIterator , F > {
2352
2372
iter : I ,
2353
2373
f : F ,
2354
2374
frontiter : Option < U :: IntoIter > ,
2355
2375
backiter : Option < U :: IntoIter > ,
2356
2376
}
2357
2377
2378
+ #[ stable( feature = "rust1" , since = "1.25.0" ) ]
2379
+ impl < I , U , F > Copy for FlatMap < I , U , F >
2380
+ where
2381
+ I : Copy ,
2382
+ F : Copy ,
2383
+ U : IntoIterator ,
2384
+ U :: IntoIter : Copy ,
2385
+ { }
2386
+
2387
+ #[ stable( feature = "rust1" , since = "1.25.0" ) ]
2388
+ impl < I , U , F > Clone for FlatMap < I , U , F >
2389
+ where
2390
+ I : Clone ,
2391
+ F : Clone ,
2392
+ U : IntoIterator ,
2393
+ U :: IntoIter : Clone ,
2394
+ {
2395
+ fn clone ( & self ) -> Self {
2396
+ FlatMap {
2397
+ iter : self . iter . clone ( ) ,
2398
+ f : self . f . clone ( ) ,
2399
+ frontiter : self . frontiter . clone ( ) ,
2400
+ backiter : self . backiter . clone ( ) ,
2401
+ }
2402
+ }
2403
+ }
2404
+
2358
2405
#[ stable( feature = "core_impl_debug" , since = "1.9.0" ) ]
2359
2406
impl < I : fmt:: Debug , U : IntoIterator , F > fmt:: Debug for FlatMap < I , U , F >
2360
2407
where U :: IntoIter : fmt:: Debug
@@ -2513,7 +2560,7 @@ impl<I, U, F> FusedIterator for FlatMap<I, U, F>
2513
2560
///
2514
2561
/// [`fuse`]: trait.Iterator.html#method.fuse
2515
2562
/// [`Iterator`]: trait.Iterator.html
2516
- #[ derive( Clone , Debug ) ]
2563
+ #[ derive( Copy , Clone , Debug ) ]
2517
2564
#[ must_use = "iterator adaptors are lazy and do nothing unless consumed" ]
2518
2565
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
2519
2566
pub struct Fuse < I > {
@@ -2740,7 +2787,7 @@ impl<I> ExactSizeIterator for Fuse<I> where I: ExactSizeIterator {
2740
2787
/// [`Iterator`]: trait.Iterator.html
2741
2788
#[ must_use = "iterator adaptors are lazy and do nothing unless consumed" ]
2742
2789
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
2743
- #[ derive( Clone ) ]
2790
+ #[ derive( Copy , Clone ) ]
2744
2791
pub struct Inspect < I , F > {
2745
2792
iter : I ,
2746
2793
f : F ,
0 commit comments