@@ -2527,6 +2527,7 @@ impl<T: fmt::Display + ?Sized> ToString for T {
2527
2527
}
2528
2528
}
2529
2529
2530
+ #[ doc( hidden) ]
2530
2531
#[ cfg( not( no_global_oom_handling) ) ]
2531
2532
#[ unstable( feature = "ascii_char" , issue = "110998" ) ]
2532
2533
impl ToString for core:: ascii:: Char {
@@ -2536,6 +2537,7 @@ impl ToString for core::ascii::Char {
2536
2537
}
2537
2538
}
2538
2539
2540
+ #[ doc( hidden) ]
2539
2541
#[ cfg( not( no_global_oom_handling) ) ]
2540
2542
#[ stable( feature = "char_to_string_specialization" , since = "1.46.0" ) ]
2541
2543
impl ToString for char {
@@ -2545,6 +2547,7 @@ impl ToString for char {
2545
2547
}
2546
2548
}
2547
2549
2550
+ #[ doc( hidden) ]
2548
2551
#[ cfg( not( no_global_oom_handling) ) ]
2549
2552
#[ stable( feature = "bool_to_string_specialization" , since = "1.68.0" ) ]
2550
2553
impl ToString for bool {
@@ -2554,6 +2557,7 @@ impl ToString for bool {
2554
2557
}
2555
2558
}
2556
2559
2560
+ #[ doc( hidden) ]
2557
2561
#[ cfg( not( no_global_oom_handling) ) ]
2558
2562
#[ stable( feature = "u8_to_string_specialization" , since = "1.54.0" ) ]
2559
2563
impl ToString for u8 {
@@ -2574,6 +2578,7 @@ impl ToString for u8 {
2574
2578
}
2575
2579
}
2576
2580
2581
+ #[ doc( hidden) ]
2577
2582
#[ cfg( not( no_global_oom_handling) ) ]
2578
2583
#[ stable( feature = "i8_to_string_specialization" , since = "1.54.0" ) ]
2579
2584
impl ToString for i8 {
@@ -2597,6 +2602,7 @@ impl ToString for i8 {
2597
2602
}
2598
2603
}
2599
2604
2605
+ #[ doc( hidden) ]
2600
2606
#[ cfg( not( no_global_oom_handling) ) ]
2601
2607
#[ stable( feature = "str_to_string_specialization" , since = "1.9.0" ) ]
2602
2608
impl ToString for str {
@@ -2606,6 +2612,7 @@ impl ToString for str {
2606
2612
}
2607
2613
}
2608
2614
2615
+ #[ doc( hidden) ]
2609
2616
#[ cfg( not( no_global_oom_handling) ) ]
2610
2617
#[ stable( feature = "cow_str_to_string_specialization" , since = "1.17.0" ) ]
2611
2618
impl ToString for Cow < ' _ , str > {
@@ -2615,6 +2622,7 @@ impl ToString for Cow<'_, str> {
2615
2622
}
2616
2623
}
2617
2624
2625
+ #[ doc( hidden) ]
2618
2626
#[ cfg( not( no_global_oom_handling) ) ]
2619
2627
#[ stable( feature = "string_to_string_specialization" , since = "1.17.0" ) ]
2620
2628
impl ToString for String {
@@ -2624,6 +2632,7 @@ impl ToString for String {
2624
2632
}
2625
2633
}
2626
2634
2635
+ #[ doc( hidden) ]
2627
2636
#[ cfg( not( no_global_oom_handling) ) ]
2628
2637
#[ stable( feature = "fmt_arguments_to_string_specialization" , since = "1.71.0" ) ]
2629
2638
impl ToString for fmt:: Arguments < ' _ > {
0 commit comments