14
14
15
15
use prelude:: v1:: * ;
16
16
17
- use cell:: { Cell , RefCell , Ref , RefMut , BorrowState } ;
17
+ use cell:: { UnsafeCell , Cell , RefCell , Ref , RefMut , BorrowState } ;
18
18
use marker:: PhantomData ;
19
19
use mem;
20
20
use num:: flt2dec;
@@ -25,6 +25,7 @@ use str;
25
25
26
26
#[ unstable( feature = "fmt_flags_align" , issue = "27726" ) ]
27
27
/// Possible alignments returned by `Formatter::align`
28
+ #[ derive( Debug ) ]
28
29
pub enum Alignment {
29
30
/// Indication that contents should be left-aligned.
30
31
Left ,
@@ -152,6 +153,7 @@ impl<'a, W: Write + ?Sized> Write for &'a mut W {
152
153
/// A struct to represent both where to emit formatting strings to and how they
153
154
/// should be formatted. A mutable version of this is passed to all formatting
154
155
/// traits.
156
+ #[ allow( missing_debug_implementations) ]
155
157
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
156
158
pub struct Formatter < ' a > {
157
159
flags : u32 ,
@@ -175,6 +177,7 @@ enum Void {}
175
177
/// compile time it is ensured that the function and the value have the correct
176
178
/// types, and then this struct is used to canonicalize arguments to one type.
177
179
#[ derive( Copy ) ]
180
+ #[ allow( missing_debug_implementations) ]
178
181
#[ unstable( feature = "fmt_internals" , reason = "internal to format_args!" ,
179
182
issue = "0" ) ]
180
183
#[ doc( hidden) ]
@@ -1585,7 +1588,9 @@ impl<T: ?Sized> Debug for PhantomData<T> {
1585
1588
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1586
1589
impl < T : Copy + Debug > Debug for Cell < T > {
1587
1590
fn fmt ( & self , f : & mut Formatter ) -> Result {
1588
- write ! ( f, "Cell {{ value: {:?} }}" , self . get( ) )
1591
+ f. debug_struct ( "Cell" )
1592
+ . field ( "value" , & self . get ( ) )
1593
+ . finish ( )
1589
1594
}
1590
1595
}
1591
1596
@@ -1594,9 +1599,15 @@ impl<T: ?Sized + Debug> Debug for RefCell<T> {
1594
1599
fn fmt ( & self , f : & mut Formatter ) -> Result {
1595
1600
match self . borrow_state ( ) {
1596
1601
BorrowState :: Unused | BorrowState :: Reading => {
1597
- write ! ( f, "RefCell {{ value: {:?} }}" , self . borrow( ) )
1602
+ f. debug_struct ( "RefCell" )
1603
+ . field ( "value" , & self . borrow ( ) )
1604
+ . finish ( )
1605
+ }
1606
+ BorrowState :: Writing => {
1607
+ f. debug_struct ( "RefCell" )
1608
+ . field ( "value" , & "<borrowed>" )
1609
+ . finish ( )
1598
1610
}
1599
- BorrowState :: Writing => write ! ( f, "RefCell {{ <borrowed> }}" ) ,
1600
1611
}
1601
1612
}
1602
1613
}
@@ -1615,5 +1626,12 @@ impl<'b, T: ?Sized + Debug> Debug for RefMut<'b, T> {
1615
1626
}
1616
1627
}
1617
1628
1629
+ #[ stable( feature = "core_impl_debug" , since = "1.9.0" ) ]
1630
+ impl < T : ?Sized + Debug > Debug for UnsafeCell < T > {
1631
+ fn fmt ( & self , f : & mut Formatter ) -> Result {
1632
+ f. pad ( "UnsafeCell" )
1633
+ }
1634
+ }
1635
+
1618
1636
// If you expected tests to be here, look instead at the run-pass/ifmt.rs test,
1619
1637
// it's a lot easier than creating all of the rt::Piece structures here.
0 commit comments