We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc2ba13 commit 41df05dCopy full SHA for 41df05d
src/libcore/char.rs
@@ -446,7 +446,9 @@ enum EscapeUnicodeState {
446
Done,
447
}
448
449
-impl Iterator<char> for EscapeUnicode {
+impl Iterator for EscapeUnicode {
450
+ type Item = char;
451
+
452
fn next(&mut self) -> Option<char> {
453
match self.state {
454
EscapeUnicodeState::Backslash => {
@@ -501,7 +503,9 @@ enum EscapeDefaultState {
501
503
Unicode(EscapeUnicode),
502
504
505
-impl Iterator<char> for EscapeDefault {
506
+impl Iterator for EscapeDefault {
507
508
509
510
511
EscapeDefaultState::Backslash(c) => {
0 commit comments