File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed
branches/beta/src/libcore Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ refs/heads/automation-fail: 1bf06495443584539b958873e04cc2f864ab10e4
31
31
refs/heads/issue-18208-method-dispatch-3-quick-reject: 2009f85b9f99dedcec4404418eda9ddba90258a2
32
32
refs/heads/batch: b7fd822592a4fb577552d93010c4a4e14f314346
33
33
refs/heads/building: 126db549b038c84269a1e4fe46f051b2c15d6970
34
- refs/heads/beta: 870aea216bb6f6d6a238c03e186a01bff8820ac0
34
+ refs/heads/beta: 0ab8d5dadd72b8d44cc79a1756c0a00fec619efa
35
35
refs/heads/windistfix: 7608dbad651f02e837ed05eef3d74a6662a6e928
36
36
refs/tags/1.0.0-alpha: e42bd6d93a1d3433c486200587f8f9e12590a4d7
37
37
refs/heads/tmp: eb836bf767aa1d8d4cba488a9091cde3c0ab4b2f
Original file line number Diff line number Diff line change @@ -1824,6 +1824,7 @@ impl<I> RandomAccessIterator for Enumerate<I> where I: RandomAccessIterator {
1824
1824
}
1825
1825
1826
1826
/// An iterator with a `peek()` that returns an optional reference to the next element.
1827
+ #[ derive( Clone ) ]
1827
1828
#[ must_use = "iterator adaptors are lazy and do nothing unless consumed" ]
1828
1829
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1829
1830
pub struct Peekable < T , I > where I : Iterator < Item =T > {
Original file line number Diff line number Diff line change @@ -977,7 +977,7 @@ impl fmt::Debug for RangeFull {
977
977
}
978
978
979
979
/// A (half-open) range which is bounded at both ends.
980
- #[ derive( Copy , Clone , PartialEq , Eq ) ]
980
+ #[ derive( Clone , PartialEq , Eq ) ]
981
981
#[ lang="range" ]
982
982
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
983
983
pub struct Range < Idx > {
@@ -995,7 +995,7 @@ impl<Idx: fmt::Debug> fmt::Debug for Range<Idx> {
995
995
}
996
996
997
997
/// A range which is only bounded below.
998
- #[ derive( Copy , Clone , PartialEq , Eq ) ]
998
+ #[ derive( Clone , PartialEq , Eq ) ]
999
999
#[ lang="range_from" ]
1000
1000
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1001
1001
pub struct RangeFrom < Idx > {
You can’t perform that action at this time.
0 commit comments