@@ -319,8 +319,8 @@ mod if_std {
319319/// `Interrupted`.  Implementations must convert `WouldBlock` into 
320320/// `Poll::Pending` and either internally retry or convert 
321321/// `Interrupted` into another error kind. 
322- fn  poll_fill_buf < ' a > ( self :  Pin < & ' a   mut  Self > ,  cx :  & mut  Context < ' _ > ) 
323-             -> Poll < Result < & ' a   [ u8 ] > > ; 
322+ fn  poll_fill_buf ( self :  Pin < & mut  Self > ,  cx :  & mut  Context < ' _ > ) 
323+             -> Poll < Result < & [ u8 ] > > ; 
324324
325325        /// Tells this buffer that `amt` bytes have been consumed from the buffer, 
326326/// so they should no longer be returned in calls to [`poll_read`]. 
@@ -597,8 +597,8 @@ mod if_std {
597597
598598    macro_rules!  deref_async_buf_read { 
599599        ( )  => { 
600-             fn  poll_fill_buf< ' a> ( self :  Pin <& ' a  mut  Self >,  cx:  & mut  Context <' _>) 
601-                 -> Poll <Result <& ' a  [ u8 ] >>
600+             fn  poll_fill_buf( self :  Pin <& mut  Self >,  cx:  & mut  Context <' _>) 
601+                 -> Poll <Result <& [ u8 ] >>
602602            { 
603603                Pin :: new( & mut  * * self . get_mut( ) ) . poll_fill_buf( cx) 
604604            } 
@@ -622,8 +622,8 @@ mod if_std {
622622        P :  DerefMut  + Unpin , 
623623        P :: Target :  AsyncBufRead , 
624624    { 
625-         fn  poll_fill_buf < ' a > ( self :  Pin < & ' a   mut  Self > ,  cx :  & mut  Context < ' _ > ) 
626-             -> Poll < Result < & ' a   [ u8 ] > > 
625+         fn  poll_fill_buf ( self :  Pin < & mut  Self > ,  cx :  & mut  Context < ' _ > ) 
626+             -> Poll < Result < & [ u8 ] > > 
627627        { 
628628            self . get_mut ( ) . as_mut ( ) . poll_fill_buf ( cx) 
629629        } 
@@ -635,8 +635,8 @@ mod if_std {
635635
636636    macro_rules!  delegate_async_buf_read_to_stdio { 
637637        ( )  => { 
638-             fn  poll_fill_buf< ' a> ( self :  Pin <& ' a  mut  Self >,  _:  & mut  Context <' _>) 
639-                 -> Poll <Result <& ' a  [ u8 ] >>
638+             fn  poll_fill_buf( self :  Pin <& mut  Self >,  _:  & mut  Context <' _>) 
639+                 -> Poll <Result <& [ u8 ] >>
640640            { 
641641                Poll :: Ready ( io:: BufRead :: fill_buf( self . get_mut( ) ) ) 
642642            } 
0 commit comments