@@ -84,15 +84,15 @@ impl<'a, T: TryFrom<u16, Error = NotInSchema>> FromPointerReader<'a> for Reader<
8484 }
8585}
8686
87- impl < ' a , T : TryFrom < u16 , Error = NotInSchema > >
88- IndexMove < u32 , :: core :: result :: Result < T , NotInSchema > > for Reader < ' a , T >
87+ impl < T : TryFrom < u16 , Error = NotInSchema > > IndexMove < u32 , :: core :: result :: Result < T , NotInSchema > >
88+ for Reader < ' _ , T >
8989{
9090 fn index_move ( & self , index : u32 ) -> :: core:: result:: Result < T , NotInSchema > {
9191 self . get ( index)
9292 }
9393}
9494
95- impl < ' a , T : TryFrom < u16 , Error = NotInSchema > > Reader < ' a , T > {
95+ impl < T : TryFrom < u16 , Error = NotInSchema > > Reader < ' _ , T > {
9696 /// Gets the `T` at position `index`. Panics if `index` is greater than or
9797 /// equal to `len()`.
9898 pub fn get ( & self , index : u32 ) -> :: core:: result:: Result < T , NotInSchema > {
@@ -167,7 +167,7 @@ impl<'a, T: TryFrom<u16, Error = NotInSchema>> FromPointerBuilder<'a> for Builde
167167 }
168168}
169169
170- impl < ' a , T : Into < u16 > + TryFrom < u16 , Error = NotInSchema > > Builder < ' a , T > {
170+ impl < T : Into < u16 > + TryFrom < u16 , Error = NotInSchema > > Builder < ' _ , T > {
171171 /// Gets the `T` at position `index`. Panics if `index` is greater than or
172172 /// equal to `len()`.
173173 pub fn get ( & self , index : u32 ) -> :: core:: result:: Result < T , NotInSchema > {
@@ -292,8 +292,8 @@ impl<'a, T: TryFrom<u16, Error = NotInSchema> + crate::introspect::Introspect>
292292 }
293293}
294294
295- impl < ' a , T : Copy + TryFrom < u16 , Error = NotInSchema > + crate :: introspect:: Introspect >
296- core :: fmt :: Debug for Reader < ' a , T >
295+ impl < T : Copy + TryFrom < u16 , Error = NotInSchema > + crate :: introspect:: Introspect > core :: fmt :: Debug
296+ for Reader < ' _ , T >
297297{
298298 fn fmt ( & self , f : & mut core:: fmt:: Formatter < ' _ > ) -> core:: fmt:: Result {
299299 core:: fmt:: Debug :: fmt (
0 commit comments