File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -117,7 +117,7 @@ impl Pool {
117117}
118118
119119/// This impl allows us to use our own pool as an executor for SQLx queries.
120- impl < ' p > sqlx:: Executor < ' p > for & ' _ Pool
120+ impl sqlx:: Executor < ' _ > for & ' _ Pool
121121where
122122 for < ' c > & ' c mut <sqlx:: Postgres as sqlx:: Database >:: Connection :
123123 sqlx:: Executor < ' c , Database = sqlx:: Postgres > ,
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ impl BuildStatus {
3232 }
3333}
3434
35- impl < ' a > PartialEq < & ' a str > for BuildStatus {
35+ impl PartialEq < & str > for BuildStatus {
3636 fn eq ( & self , other : & & str ) -> bool {
3737 match self {
3838 Self :: Success => * other == "success" ,
Original file line number Diff line number Diff line change @@ -290,7 +290,7 @@ pub(crate) enum ReleaseType {
290290 Search ,
291291}
292292
293- impl < ' a > PartialEq < & ' a str > for ReleaseType {
293+ impl PartialEq < & str > for ReleaseType {
294294 fn eq ( & self , other : & & str ) -> bool {
295295 self . as_str ( ) == * other
296296 }
You can’t perform that action at this time.
0 commit comments