@@ -611,7 +611,7 @@ impl std::convert::From<String> for AnotherXmlInner {
611611
612612impl std:: fmt:: Display for AnotherXmlInner {
613613 fn fmt ( & self , f : & mut std:: fmt:: Formatter < ' _ > ) -> std:: fmt:: Result {
614- write ! ( f, "{:? }" , self . 0 )
614+ write ! ( f, "{}" , self . 0 )
615615 }
616616}
617617
@@ -1255,7 +1255,7 @@ impl std::convert::From<String> for Err {
12551255
12561256impl std:: fmt:: Display for Err {
12571257 fn fmt ( & self , f : & mut std:: fmt:: Formatter < ' _ > ) -> std:: fmt:: Result {
1258- write ! ( f, "{:? }" , self . 0 )
1258+ write ! ( f, "{}" , self . 0 )
12591259 }
12601260}
12611261
@@ -1303,7 +1303,7 @@ impl std::convert::From<String> for Error {
13031303
13041304impl std:: fmt:: Display for Error {
13051305 fn fmt ( & self , f : & mut std:: fmt:: Formatter < ' _ > ) -> std:: fmt:: Result {
1306- write ! ( f, "{:? }" , self . 0 )
1306+ write ! ( f, "{}" , self . 0 )
13071307 }
13081308}
13091309
@@ -1833,7 +1833,7 @@ impl std::convert::From<String> for NullableObject {
18331833
18341834impl std:: fmt:: Display for NullableObject {
18351835 fn fmt ( & self , f : & mut std:: fmt:: Formatter < ' _ > ) -> std:: fmt:: Result {
1836- write ! ( f, "{:? }" , self . 0 )
1836+ write ! ( f, "{}" , self . 0 )
18371837 }
18381838}
18391839
@@ -2809,7 +2809,7 @@ impl std::convert::From<String> for Ok {
28092809
28102810impl std:: fmt:: Display for Ok {
28112811 fn fmt ( & self , f : & mut std:: fmt:: Formatter < ' _ > ) -> std:: fmt:: Result {
2812- write ! ( f, "{:? }" , self . 0 )
2812+ write ! ( f, "{}" , self . 0 )
28132813 }
28142814}
28152815
@@ -2966,7 +2966,7 @@ impl std::convert::From<String> for Result {
29662966
29672967impl std:: fmt:: Display for Result {
29682968 fn fmt ( & self , f : & mut std:: fmt:: Formatter < ' _ > ) -> std:: fmt:: Result {
2969- write ! ( f, "{:? }" , self . 0 )
2969+ write ! ( f, "{}" , self . 0 )
29702970 }
29712971}
29722972
@@ -3057,7 +3057,7 @@ impl std::convert::From<String> for StringObject {
30573057
30583058impl std:: fmt:: Display for StringObject {
30593059 fn fmt ( & self , f : & mut std:: fmt:: Formatter < ' _ > ) -> std:: fmt:: Result {
3060- write ! ( f, "{:? }" , self . 0 )
3060+ write ! ( f, "{}" , self . 0 )
30613061 }
30623062}
30633063
@@ -3282,7 +3282,7 @@ impl std::convert::From<String> for XmlInner {
32823282
32833283impl std:: fmt:: Display for XmlInner {
32843284 fn fmt ( & self , f : & mut std:: fmt:: Formatter < ' _ > ) -> std:: fmt:: Result {
3285- write ! ( f, "{:? }" , self . 0 )
3285+ write ! ( f, "{}" , self . 0 )
32863286 }
32873287}
32883288
0 commit comments