@@ -2527,6 +2527,7 @@ impl<T: fmt::Display + ?Sized> ToString for T {
25272527 }
25282528}
25292529
2530+ #[ doc( hidden) ]
25302531#[ cfg( not( no_global_oom_handling) ) ]
25312532#[ unstable( feature = "ascii_char" , issue = "110998" ) ]
25322533impl ToString for core:: ascii:: Char {
@@ -2536,6 +2537,7 @@ impl ToString for core::ascii::Char {
25362537 }
25372538}
25382539
2540+ #[ doc( hidden) ]
25392541#[ cfg( not( no_global_oom_handling) ) ]
25402542#[ stable( feature = "char_to_string_specialization" , since = "1.46.0" ) ]
25412543impl ToString for char {
@@ -2545,6 +2547,7 @@ impl ToString for char {
25452547 }
25462548}
25472549
2550+ #[ doc( hidden) ]
25482551#[ cfg( not( no_global_oom_handling) ) ]
25492552#[ stable( feature = "bool_to_string_specialization" , since = "1.68.0" ) ]
25502553impl ToString for bool {
@@ -2554,6 +2557,7 @@ impl ToString for bool {
25542557 }
25552558}
25562559
2560+ #[ doc( hidden) ]
25572561#[ cfg( not( no_global_oom_handling) ) ]
25582562#[ stable( feature = "u8_to_string_specialization" , since = "1.54.0" ) ]
25592563impl ToString for u8 {
@@ -2574,6 +2578,7 @@ impl ToString for u8 {
25742578 }
25752579}
25762580
2581+ #[ doc( hidden) ]
25772582#[ cfg( not( no_global_oom_handling) ) ]
25782583#[ stable( feature = "i8_to_string_specialization" , since = "1.54.0" ) ]
25792584impl ToString for i8 {
@@ -2597,6 +2602,7 @@ impl ToString for i8 {
25972602 }
25982603}
25992604
2605+ #[ doc( hidden) ]
26002606#[ cfg( not( no_global_oom_handling) ) ]
26012607#[ stable( feature = "str_to_string_specialization" , since = "1.9.0" ) ]
26022608impl ToString for str {
@@ -2606,6 +2612,7 @@ impl ToString for str {
26062612 }
26072613}
26082614
2615+ #[ doc( hidden) ]
26092616#[ cfg( not( no_global_oom_handling) ) ]
26102617#[ stable( feature = "cow_str_to_string_specialization" , since = "1.17.0" ) ]
26112618impl ToString for Cow < ' _ , str > {
@@ -2615,6 +2622,7 @@ impl ToString for Cow<'_, str> {
26152622 }
26162623}
26172624
2625+ #[ doc( hidden) ]
26182626#[ cfg( not( no_global_oom_handling) ) ]
26192627#[ stable( feature = "string_to_string_specialization" , since = "1.17.0" ) ]
26202628impl ToString for String {
@@ -2624,6 +2632,7 @@ impl ToString for String {
26242632 }
26252633}
26262634
2635+ #[ doc( hidden) ]
26272636#[ cfg( not( no_global_oom_handling) ) ]
26282637#[ stable( feature = "fmt_arguments_to_string_specialization" , since = "1.71.0" ) ]
26292638impl ToString for fmt:: Arguments < ' _ > {
0 commit comments