@@ -84,7 +84,7 @@ macro_rules! impl_array_newtype {
84
84
pub fn into_bytes( self ) -> [ $ty; $len] { self . 0 }
85
85
}
86
86
87
- impl <' a> :: core:: convert:: From <& ' a [ $ty] > for $thing {
87
+ impl <' a> core:: convert:: From <& ' a [ $ty] > for $thing {
88
88
fn from( data: & ' a [ $ty] ) -> $thing {
89
89
assert_eq!( data. len( ) , $len) ;
90
90
let mut ret = [ 0 ; $len] ;
@@ -109,7 +109,7 @@ macro_rules! impl_array_newtype {
109
109
110
110
macro_rules! display_from_debug {
111
111
( $thing: ident) => {
112
- impl :: core:: fmt:: Display for $thing {
112
+ impl core:: fmt:: Display for $thing {
113
113
fn fmt( & self , f: & mut :: core:: fmt:: Formatter ) -> Result <( ) , :: core:: fmt:: Error > {
114
114
:: core:: fmt:: Debug :: fmt( self , f)
115
115
}
@@ -365,13 +365,13 @@ macro_rules! impl_bytes_newtype {
365
365
366
366
impl :: core:: fmt:: Display for $t {
367
367
fn fmt( & self , f: & mut :: core:: fmt:: Formatter ) -> :: core:: fmt:: Result {
368
- fmt:: LowerHex :: fmt( self , f)
368
+ :: core :: fmt:: LowerHex :: fmt( self , f)
369
369
}
370
370
}
371
371
372
372
impl :: core:: fmt:: Debug for $t {
373
373
fn fmt( & self , f: & mut :: core:: fmt:: Formatter ) -> :: core:: fmt:: Result {
374
- fmt:: LowerHex :: fmt( self , f)
374
+ :: core :: fmt:: LowerHex :: fmt( self , f)
375
375
}
376
376
}
377
377
0 commit comments