@@ -33,6 +33,7 @@ impl ::core::clone::Clone for Empty {
3333impl ::core::marker::Copy for Empty { }
3434#[automatically_derived]
3535impl ::core::fmt::Debug for Empty {
36+     #[inline]
3637    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
3738        ::core::fmt::Formatter::write_str(f, "Empty")
3839    }
@@ -97,6 +98,7 @@ impl ::core::clone::Clone for Point {
9798impl ::core::marker::Copy for Point { }
9899#[automatically_derived]
99100impl ::core::fmt::Debug for Point {
101+     #[inline]
100102    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
101103        ::core::fmt::Formatter::debug_struct_field2_finish(f, "Point", "x",
102104            &self.x, "y", &&self.y)
@@ -183,6 +185,7 @@ impl ::core::clone::Clone for PackedPoint {
183185impl ::core::marker::Copy for PackedPoint { }
184186#[automatically_derived]
185187impl ::core::fmt::Debug for PackedPoint {
188+     #[inline]
186189    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
187190        ::core::fmt::Formatter::debug_struct_field2_finish(f, "PackedPoint",
188191            "x", &{ self.x }, "y", &&{ self.y })
@@ -276,6 +279,7 @@ impl ::core::clone::Clone for Big {
276279impl ::core::marker::Copy for Big { }
277280#[automatically_derived]
278281impl ::core::fmt::Debug for Big {
282+     #[inline]
279283    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
280284        let names: &'static _ =
281285            &["b1", "b2", "b3", "b4", "b5", "b6", "b7", "b8"];
@@ -475,6 +479,7 @@ impl Copy for PackedManualCopy {}
475479struct Unsized([u32]);
476480#[automatically_derived]
477481impl ::core::fmt::Debug for Unsized {
482+     #[inline]
478483    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
479484        ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Unsized",
480485            &&self.0)
@@ -527,6 +532,7 @@ impl ::core::cmp::Ord for Unsized {
527532struct PackedUnsizedU8([u8]);
528533#[automatically_derived]
529534impl ::core::fmt::Debug for PackedUnsizedU8 {
535+     #[inline]
530536    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
531537        ::core::fmt::Formatter::debug_tuple_field1_finish(f,
532538            "PackedUnsizedU8", &&self.0)
@@ -569,6 +575,7 @@ impl<T: ::core::marker::Copy + Trait, U: ::core::marker::Copy>
569575#[automatically_derived]
570576impl<T: ::core::fmt::Debug + Trait, U: ::core::fmt::Debug> ::core::fmt::Debug
571577    for Generic<T, U> where T::A: ::core::fmt::Debug {
578+     #[inline]
572579    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
573580        ::core::fmt::Formatter::debug_struct_field3_finish(f, "Generic", "t",
574581            &self.t, "ta", &self.ta, "u", &&self.u)
@@ -687,6 +694,7 @@ impl<T: ::core::fmt::Debug + ::core::marker::Copy + Trait,
687694    U: ::core::fmt::Debug + ::core::marker::Copy> ::core::fmt::Debug for
688695    PackedGeneric<T, U> where T::A: ::core::fmt::Debug + ::core::marker::Copy
689696    {
697+     #[inline]
690698    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
691699        ::core::fmt::Formatter::debug_tuple_field3_finish(f, "PackedGeneric",
692700            &{ self.0 }, &{ self.1 }, &&{ self.2 })
@@ -797,6 +805,7 @@ impl ::core::clone::Clone for Enum0 {
797805impl ::core::marker::Copy for Enum0 { }
798806#[automatically_derived]
799807impl ::core::fmt::Debug for Enum0 {
808+     #[inline]
800809    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
801810        match *self {}
802811    }
@@ -856,6 +865,7 @@ impl ::core::clone::Clone for Enum1 {
856865}
857866#[automatically_derived]
858867impl ::core::fmt::Debug for Enum1 {
868+     #[inline]
859869    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
860870        match self {
861871            Enum1::Single { x: __self_0 } =>
@@ -932,6 +942,7 @@ impl ::core::clone::Clone for Fieldless1 {
932942}
933943#[automatically_derived]
934944impl ::core::fmt::Debug for Fieldless1 {
945+     #[inline]
935946    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
936947        ::core::fmt::Formatter::write_str(f, "A")
937948    }
@@ -995,6 +1006,7 @@ impl ::core::clone::Clone for Fieldless {
9951006impl ::core::marker::Copy for Fieldless { }
9961007#[automatically_derived]
9971008impl ::core::fmt::Debug for Fieldless {
1009+     #[inline]
9981010    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
9991011        ::core::fmt::Formatter::write_str(f,
10001012            match self {
@@ -1083,6 +1095,7 @@ impl ::core::clone::Clone for Mixed {
10831095impl ::core::marker::Copy for Mixed { }
10841096#[automatically_derived]
10851097impl ::core::fmt::Debug for Mixed {
1098+     #[inline]
10861099    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
10871100        match self {
10881101            Mixed::P => ::core::fmt::Formatter::write_str(f, "P"),
@@ -1217,6 +1230,7 @@ impl ::core::clone::Clone for Fielded {
12171230}
12181231#[automatically_derived]
12191232impl ::core::fmt::Debug for Fielded {
1233+     #[inline]
12201234    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
12211235        match self {
12221236            Fielded::X(__self_0) =>
@@ -1341,6 +1355,7 @@ impl<T: ::core::marker::Copy, U: ::core::marker::Copy> ::core::marker::Copy
13411355#[automatically_derived]
13421356impl<T: ::core::fmt::Debug, U: ::core::fmt::Debug> ::core::fmt::Debug for
13431357    EnumGeneric<T, U> {
1358+     #[inline]
13441359    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
13451360        match self {
13461361            EnumGeneric::One(__self_0) =>
0 commit comments