@@ -552,8 +552,8 @@ impl MissingHeader {
552552 }
553553}
554554
555- impl :: std :: fmt:: Display for MissingHeader {
556- fn fmt ( & self , f : & mut :: std :: fmt:: Formatter < ' _ > ) -> :: std :: fmt:: Result {
555+ impl fmt:: Display for MissingHeader {
556+ fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
557557 write ! ( f, "Missing request header {:?}" , self . name)
558558 }
559559}
@@ -573,8 +573,8 @@ impl InvalidHeader {
573573 }
574574}
575575
576- impl :: std :: fmt:: Display for InvalidHeader {
577- fn fmt ( & self , f : & mut :: std :: fmt:: Formatter < ' _ > ) -> :: std :: fmt:: Result {
576+ impl fmt:: Display for InvalidHeader {
577+ fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
578578 write ! ( f, "Invalid request header {:?}" , self . name)
579579 }
580580}
@@ -594,8 +594,8 @@ impl MissingCookie {
594594 }
595595}
596596
597- impl :: std :: fmt:: Display for MissingCookie {
598- fn fmt ( & self , f : & mut :: std :: fmt:: Formatter < ' _ > ) -> :: std :: fmt:: Result {
597+ impl fmt:: Display for MissingCookie {
598+ fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
599599 write ! ( f, "Missing request cookie {:?}" , self . name)
600600 }
601601}
0 commit comments