@@ -264,8 +264,8 @@ pub trait CharExt {
264
264
fn escape_unicode ( self ) -> EscapeUnicode ;
265
265
#[ stable( feature = "core" , since = "1.6.0" ) ]
266
266
fn escape_default ( self ) -> EscapeDefault ;
267
- #[ unstable( feature = "char_escape " , issue = "0 " ) ]
268
- fn escape ( self ) -> Escape ;
267
+ #[ unstable( feature = "char_escape_debug " , issue = "35068 " ) ]
268
+ fn escape_debug ( self ) -> EscapeDebug ;
269
269
#[ stable( feature = "core" , since = "1.6.0" ) ]
270
270
fn len_utf8 ( self ) -> usize ;
271
271
#[ stable( feature = "core" , since = "1.6.0" ) ]
@@ -330,7 +330,7 @@ impl CharExt for char {
330
330
}
331
331
332
332
#[ inline]
333
- fn escape ( self ) -> Escape {
333
+ fn escape_debug ( self ) -> EscapeDebug {
334
334
let init_state = match self {
335
335
'\t' => EscapeDefaultState :: Backslash ( 't' ) ,
336
336
'\r' => EscapeDefaultState :: Backslash ( 'r' ) ,
@@ -339,7 +339,7 @@ impl CharExt for char {
339
339
c if is_printable ( c) => EscapeDefaultState :: Char ( c) ,
340
340
c => EscapeDefaultState :: Unicode ( c. escape_unicode ( ) ) ,
341
341
} ;
342
- Escape ( EscapeDefault { state : init_state } )
342
+ EscapeDebug ( EscapeDefault { state : init_state } )
343
343
}
344
344
345
345
#[ inline]
@@ -618,24 +618,24 @@ impl ExactSizeIterator for EscapeDefault {
618
618
619
619
/// An iterator that yields the literal escape code of a `char`.
620
620
///
621
- /// This `struct` is created by the [`escape ()`] method on [`char`]. See its
621
+ /// This `struct` is created by the [`escape_debug ()`] method on [`char`]. See its
622
622
/// documentation for more.
623
623
///
624
- /// [`escape ()`]: ../../std/primitive.char.html#method.escape
624
+ /// [`escape_debug ()`]: ../../std/primitive.char.html#method.escape_debug
625
625
/// [`char`]: ../../std/primitive.char.html
626
- #[ unstable( feature = "char_escape " , issue = "0 " ) ]
626
+ #[ unstable( feature = "char_escape_debug " , issue = "35068 " ) ]
627
627
#[ derive( Clone , Debug ) ]
628
- pub struct Escape ( EscapeDefault ) ;
628
+ pub struct EscapeDebug ( EscapeDefault ) ;
629
629
630
- #[ unstable( feature = "char_escape " , issue = "0 " ) ]
631
- impl Iterator for Escape {
630
+ #[ unstable( feature = "char_escape_debug " , issue = "35068 " ) ]
631
+ impl Iterator for EscapeDebug {
632
632
type Item = char ;
633
633
fn next ( & mut self ) -> Option < char > { self . 0 . next ( ) }
634
634
fn size_hint ( & self ) -> ( usize , Option < usize > ) { self . 0 . size_hint ( ) }
635
635
}
636
636
637
- #[ unstable( feature = "char_escape " , issue = "0 " ) ]
638
- impl ExactSizeIterator for Escape { }
637
+ #[ unstable( feature = "char_escape_debug " , issue = "35068 " ) ]
638
+ impl ExactSizeIterator for EscapeDebug { }
639
639
640
640
/// An iterator over `u8` entries represending the UTF-8 encoding of a `char`
641
641
/// value.
0 commit comments