@@ -364,7 +364,7 @@ impl ::std::convert::From<&Self> for JsonSuccessBaseResult {
364364impl :: std:: fmt:: Display for JsonSuccessBaseResult {
365365 fn fmt ( & self , f : & mut :: std:: fmt:: Formatter < ' _ > ) -> :: std:: fmt:: Result {
366366 match * self {
367- Self :: Success => write ! ( f , "success" ) ,
367+ Self :: Success => f . write_str ( "success" ) ,
368368 }
369369 }
370370}
@@ -436,7 +436,7 @@ impl ::std::convert::From<&Self> for JsonSuccessResult {
436436impl :: std:: fmt:: Display for JsonSuccessResult {
437437 fn fmt ( & self , f : & mut :: std:: fmt:: Formatter < ' _ > ) -> :: std:: fmt:: Result {
438438 match * self {
439- Self :: Success => write ! ( f , "success" ) ,
439+ Self :: Success => f . write_str ( "success" ) ,
440440 }
441441 }
442442}
@@ -952,7 +952,7 @@ impl ::std::convert::From<&Self> for UnchangedByMergeTag {
952952impl :: std:: fmt:: Display for UnchangedByMergeTag {
953953 fn fmt ( & self , f : & mut :: std:: fmt:: Formatter < ' _ > ) -> :: std:: fmt:: Result {
954954 match * self {
955- Self :: Something => write ! ( f , "something" ) ,
955+ Self :: Something => f . write_str ( "something" ) ,
956956 }
957957 }
958958}
@@ -1278,7 +1278,7 @@ impl ::std::convert::From<&Self> for Unsatisfiable3B {
12781278impl :: std:: fmt:: Display for Unsatisfiable3B {
12791279 fn fmt ( & self , f : & mut :: std:: fmt:: Formatter < ' _ > ) -> :: std:: fmt:: Result {
12801280 match * self {
1281- Self :: Bar => write ! ( f , "bar" ) ,
1281+ Self :: Bar => f . write_str ( "bar" ) ,
12821282 }
12831283 }
12841284}
@@ -1350,7 +1350,7 @@ impl ::std::convert::From<&Self> for Unsatisfiable3C {
13501350impl :: std:: fmt:: Display for Unsatisfiable3C {
13511351 fn fmt ( & self , f : & mut :: std:: fmt:: Formatter < ' _ > ) -> :: std:: fmt:: Result {
13521352 match * self {
1353- Self :: Foo => write ! ( f , "foo" ) ,
1353+ Self :: Foo => f . write_str ( "foo" ) ,
13541354 }
13551355 }
13561356}
0 commit comments