@@ -201,7 +201,7 @@ pub struct Buffer<'a, D, W> {
201201 _marker : PhantomData < ( Arc < D > , Cell < ( ) > ) > ,
202202}
203203
204- impl < ' a , D : HasDisplayHandle , W : HasWindowHandle > Buffer < ' a , D , W > {
204+ impl < D : HasDisplayHandle , W : HasWindowHandle > Buffer < ' _ , D , W > {
205205 /// Is age is the number of frames ago this buffer was last presented. So if the value is
206206 /// `1`, it is the same as the last frame, and if it is `2`, it is the same as the frame
207207 /// before that (for backends using double buffering). If the value is `0`, it is a new
@@ -244,7 +244,7 @@ impl<'a, D: HasDisplayHandle, W: HasWindowHandle> Buffer<'a, D, W> {
244244 }
245245}
246246
247- impl < ' a , D : HasDisplayHandle , W : HasWindowHandle > ops:: Deref for Buffer < ' a , D , W > {
247+ impl < D : HasDisplayHandle , W : HasWindowHandle > ops:: Deref for Buffer < ' _ , D , W > {
248248 type Target = [ u32 ] ;
249249
250250 #[ inline]
@@ -253,7 +253,7 @@ impl<'a, D: HasDisplayHandle, W: HasWindowHandle> ops::Deref for Buffer<'a, D, W
253253 }
254254}
255255
256- impl < ' a , D : HasDisplayHandle , W : HasWindowHandle > ops:: DerefMut for Buffer < ' a , D , W > {
256+ impl < D : HasDisplayHandle , W : HasWindowHandle > ops:: DerefMut for Buffer < ' _ , D , W > {
257257 #[ inline]
258258 fn deref_mut ( & mut self ) -> & mut [ u32 ] {
259259 self . buffer_impl . pixels_mut ( )
0 commit comments