@@ -272,7 +272,7 @@ where
272272 /// Write I2S.
273273 /// Returns [DmaTransferTx] which represents the in-progress DMA
274274 /// transfer
275- fn write_dma < ' t > ( & ' t mut self , words : & ' t TXBUF ) -> Result < DmaTransferTx < ' _ , Self > , Error >
275+ fn write_dma < ' t > ( & ' t mut self , words : & ' t TXBUF ) -> Result < DmaTransferTx < ' t , Self > , Error >
276276 where
277277 TXBUF : ReadBuffer ;
278278
@@ -281,7 +281,7 @@ where
281281 fn write_dma_circular < ' t > (
282282 & ' t mut self ,
283283 words : & ' t TXBUF ,
284- ) -> Result < DmaTransferTxCircular < ' _ , Self > , Error >
284+ ) -> Result < DmaTransferTxCircular < ' t , Self > , Error >
285285 where
286286 TXBUF : ReadBuffer ;
287287}
@@ -304,7 +304,7 @@ where
304304 /// Read I2S.
305305 /// Returns [DmaTransferRx] which represents the in-progress DMA
306306 /// transfer
307- fn read_dma < ' t > ( & ' t mut self , words : & ' t mut RXBUF ) -> Result < DmaTransferRx < ' _ , Self > , Error >
307+ fn read_dma < ' t > ( & ' t mut self , words : & ' t mut RXBUF ) -> Result < DmaTransferRx < ' t , Self > , Error >
308308 where
309309 RXBUF : WriteBuffer ;
310310
@@ -314,7 +314,7 @@ where
314314 fn read_dma_circular < ' t > (
315315 & ' t mut self ,
316316 words : & ' t mut RXBUF ,
317- ) -> Result < DmaTransferRxCircular < ' _ , Self > , Error >
317+ ) -> Result < DmaTransferRxCircular < ' t , Self > , Error >
318318 where
319319 RXBUF : WriteBuffer ;
320320}
@@ -663,7 +663,7 @@ where
663663 CH : DmaChannel ,
664664 DmaMode : Mode ,
665665{
666- fn write_dma < ' t > ( & ' t mut self , words : & ' t TXBUF ) -> Result < DmaTransferTx < ' _ , Self > , Error >
666+ fn write_dma < ' t > ( & ' t mut self , words : & ' t TXBUF ) -> Result < DmaTransferTx < ' t , Self > , Error >
667667 where
668668 TXBUF : ReadBuffer ,
669669 {
@@ -674,7 +674,7 @@ where
674674 fn write_dma_circular < ' t > (
675675 & ' t mut self ,
676676 words : & ' t TXBUF ,
677- ) -> Result < DmaTransferTxCircular < ' _ , Self > , Error >
677+ ) -> Result < DmaTransferTxCircular < ' t , Self > , Error >
678678 where
679679 TXBUF : ReadBuffer ,
680680 {
@@ -844,7 +844,7 @@ where
844844 DmaMode : Mode ,
845845 Self : DmaSupportRx + Sized ,
846846{
847- fn read_dma < ' t > ( & ' t mut self , words : & ' t mut RXBUF ) -> Result < DmaTransferRx < ' _ , Self > , Error >
847+ fn read_dma < ' t > ( & ' t mut self , words : & ' t mut RXBUF ) -> Result < DmaTransferRx < ' t , Self > , Error >
848848 where
849849 RXBUF : WriteBuffer ,
850850 {
@@ -855,7 +855,7 @@ where
855855 fn read_dma_circular < ' t > (
856856 & ' t mut self ,
857857 words : & ' t mut RXBUF ,
858- ) -> Result < DmaTransferRxCircular < ' _ , Self > , Error >
858+ ) -> Result < DmaTransferRxCircular < ' t , Self > , Error >
859859 where
860860 RXBUF : WriteBuffer ,
861861 {
0 commit comments