@@ -238,10 +238,10 @@ impl TryNumFrom<f32> for i32 {
238238
239239 // We can't represent `MIN-1` exactly, but there's no fractional part
240240 // at this magnitude, so we can just use a `MIN` inclusive boundary.
241- const MIN : f32 = core :: i32:: MIN as f32 ;
241+ const MIN : f32 = i32:: MIN as f32 ;
242242 // We can't represent `MAX` exactly, but it will round up to exactly
243243 // `MAX+1` (a power of two) when we cast it.
244- const MAX_P1 : f32 = core :: i32:: MAX as f32 ;
244+ const MAX_P1 : f32 = i32:: MAX as f32 ;
245245 if v >= MIN && v < MAX_P1 {
246246 Some ( v as i32 )
247247 } else {
@@ -372,7 +372,7 @@ impl<'a, T: FromData> LazyArray16<'a, T> {
372372
373373impl < ' a , T : FromData + core:: fmt:: Debug + Copy > core:: fmt:: Debug for LazyArray16 < ' a , T > {
374374 fn fmt ( & self , f : & mut core:: fmt:: Formatter ) -> core:: fmt:: Result {
375- f. debug_list ( ) . entries ( self . into_iter ( ) ) . finish ( )
375+ f. debug_list ( ) . entries ( * self ) . finish ( )
376376 }
377377}
378378
@@ -522,7 +522,7 @@ impl<'a, T: FromData> LazyArray32<'a, T> {
522522
523523impl < ' a , T : FromData + core:: fmt:: Debug + Copy > core:: fmt:: Debug for LazyArray32 < ' a , T > {
524524 fn fmt ( & self , f : & mut core:: fmt:: Formatter ) -> core:: fmt:: Result {
525- f. debug_list ( ) . entries ( self . into_iter ( ) ) . finish ( )
525+ f. debug_list ( ) . entries ( * self ) . finish ( )
526526 }
527527}
528528
@@ -622,7 +622,7 @@ impl<'a, T: FromSlice<'a>> LazyOffsetArray16<'a, T> {
622622
623623impl < ' a , T : FromSlice < ' a > + core:: fmt:: Debug + Copy > core:: fmt:: Debug for LazyOffsetArray16 < ' a , T > {
624624 fn fmt ( & self , f : & mut core:: fmt:: Formatter ) -> core:: fmt:: Result {
625- f. debug_list ( ) . entries ( self . into_iter ( ) ) . finish ( )
625+ f. debug_list ( ) . entries ( * self ) . finish ( )
626626 }
627627}
628628
0 commit comments