@@ -535,7 +535,7 @@ impl Default for Mutability {
535535}
536536
537537impl core:: fmt:: Display for Mutability {
538- fn fmt ( & self , f : & mut std :: fmt:: Formatter < ' _ > ) -> std :: fmt:: Result {
538+ fn fmt ( & self , f : & mut core :: fmt:: Formatter < ' _ > ) -> core :: fmt:: Result {
539539 match self {
540540 Self :: Read => write ! ( f, "r" ) ,
541541 Self :: ReadWrite => write ! ( f, "rw" ) ,
@@ -576,7 +576,7 @@ impl Default for Extension {
576576}
577577
578578impl core:: fmt:: Display for Extension {
579- fn fmt ( & self , f : & mut std :: fmt:: Formatter < ' _ > ) -> std :: fmt:: Result {
579+ fn fmt ( & self , f : & mut core :: fmt:: Formatter < ' _ > ) -> core :: fmt:: Result {
580580 match self {
581581 Extension :: None => write ! ( f, "" ) ,
582582 Extension :: SignExtendQuad => write ! ( f, "sxq" ) ,
@@ -627,7 +627,7 @@ impl Default for Eflags {
627627}
628628
629629impl core:: fmt:: Display for Eflags {
630- fn fmt ( & self , f : & mut std :: fmt:: Formatter < ' _ > ) -> std :: fmt:: Result {
630+ fn fmt ( & self , f : & mut core :: fmt:: Formatter < ' _ > ) -> core :: fmt:: Result {
631631 match self {
632632 Self :: None => write ! ( f, "" ) ,
633633 Self :: R => write ! ( f, "r" ) ,
0 commit comments