@@ -1347,7 +1347,6 @@ impl<'a> Formatter<'a> {
1347
1347
/// println!("{:?}", Foo { bar: 10, baz: "Hello World".to_string() });
1348
1348
/// ```
1349
1349
#[ stable( feature = "debug_builders" , since = "1.2.0" ) ]
1350
- #[ inline]
1351
1350
pub fn debug_struct < ' b > ( & ' b mut self , name : & str ) -> DebugStruct < ' b , ' a > {
1352
1351
builders:: debug_struct_new ( self , name)
1353
1352
}
@@ -1375,7 +1374,6 @@ impl<'a> Formatter<'a> {
1375
1374
/// println!("{:?}", Foo(10, "Hello World".to_string()));
1376
1375
/// ```
1377
1376
#[ stable( feature = "debug_builders" , since = "1.2.0" ) ]
1378
- #[ inline]
1379
1377
pub fn debug_tuple < ' b > ( & ' b mut self , name : & str ) -> DebugTuple < ' b , ' a > {
1380
1378
builders:: debug_tuple_new ( self , name)
1381
1379
}
@@ -1400,7 +1398,6 @@ impl<'a> Formatter<'a> {
1400
1398
/// println!("{:?}", Foo(vec![10, 11]));
1401
1399
/// ```
1402
1400
#[ stable( feature = "debug_builders" , since = "1.2.0" ) ]
1403
- #[ inline]
1404
1401
pub fn debug_list < ' b > ( & ' b mut self ) -> DebugList < ' b , ' a > {
1405
1402
builders:: debug_list_new ( self )
1406
1403
}
@@ -1425,7 +1422,6 @@ impl<'a> Formatter<'a> {
1425
1422
/// println!("{:?}", Foo(vec![10, 11]));
1426
1423
/// ```
1427
1424
#[ stable( feature = "debug_builders" , since = "1.2.0" ) ]
1428
- #[ inline]
1429
1425
pub fn debug_set < ' b > ( & ' b mut self ) -> DebugSet < ' b , ' a > {
1430
1426
builders:: debug_set_new ( self )
1431
1427
}
@@ -1450,7 +1446,6 @@ impl<'a> Formatter<'a> {
1450
1446
/// println!("{:?}", Foo(vec![("A".to_string(), 10), ("B".to_string(), 11)]));
1451
1447
/// ```
1452
1448
#[ stable( feature = "debug_builders" , since = "1.2.0" ) ]
1453
- #[ inline]
1454
1449
pub fn debug_map < ' b > ( & ' b mut self ) -> DebugMap < ' b , ' a > {
1455
1450
builders:: debug_map_new ( self )
1456
1451
}
0 commit comments