File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ pub use version::UnicodeVersion;
59
59
/// [`to_lowercase`]: ../../std/primitive.char.html#method.to_lowercase
60
60
/// [`char`]: ../../std/primitive.char.html
61
61
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
62
- #[ derive( Debug ) ]
62
+ #[ derive( Debug , Clone ) ]
63
63
pub struct ToLowercase ( CaseMappingIter ) ;
64
64
65
65
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
@@ -81,7 +81,7 @@ impl FusedIterator for ToLowercase {}
81
81
/// [`to_uppercase`]: ../../std/primitive.char.html#method.to_uppercase
82
82
/// [`char`]: ../../std/primitive.char.html
83
83
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
84
- #[ derive( Debug ) ]
84
+ #[ derive( Debug , Clone ) ]
85
85
pub struct ToUppercase ( CaseMappingIter ) ;
86
86
87
87
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
@@ -95,7 +95,7 @@ impl Iterator for ToUppercase {
95
95
#[ unstable( feature = "fused" , issue = "35602" ) ]
96
96
impl FusedIterator for ToUppercase { }
97
97
98
- #[ derive( Debug ) ]
98
+ #[ derive( Debug , Clone ) ]
99
99
enum CaseMappingIter {
100
100
Three ( char , char , char ) ,
101
101
Two ( char , char ) ,
You can’t perform that action at this time.
0 commit comments