File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1799,20 +1799,20 @@ impl GenericConnection for Connection {
17991799}
18001800
18011801impl < ' a > GenericConnection for Transaction < ' a > {
1802- fn prepare < ' a > ( & ' a self , query : & str ) -> Result < Statement < ' a > > {
1802+ fn prepare < ' b > ( & ' b self , query : & str ) -> Result < Statement < ' b > > {
18031803 self . prepare ( query)
18041804 }
18051805
18061806 fn execute ( & self , query : & str , params : & [ & ToSql ] ) -> Result < uint > {
18071807 self . execute ( query, params)
18081808 }
18091809
1810- fn transaction < ' a > ( & ' a self ) -> Result < Transaction < ' a > > {
1810+ fn transaction < ' b > ( & ' b self ) -> Result < Transaction < ' b > > {
18111811 self . transaction ( )
18121812 }
18131813
1814- fn prepare_copy_in < ' a > ( & ' a self , table : & str , columns : & [ & str ] )
1815- -> Result < CopyInStatement < ' a > > {
1814+ fn prepare_copy_in < ' b > ( & ' b self , table : & str , columns : & [ & str ] )
1815+ -> Result < CopyInStatement < ' b > > {
18161816 self . prepare_copy_in ( table, columns)
18171817 }
18181818
You can’t perform that action at this time.
0 commit comments